€10
per maand
Basic
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Eigenschappen Basis
-
Voorbeeldlabel
-
Voorbeeldlabel
-
Voorbeeldlabel
-
Voorbeeldlabel
Menu
Item
Per stuk
-
1 Voorbeeldlabel
Item
Per stuk
-
1 Voorbeeldlabel
Item
Per stuk
-
1 Voorbeeldlabel
Scroll animatie op mobiel voor afbeelding tabel
-
Code
<style>
/* 1. Voorkom horizontale scroll van de hele pagina */
html, body {
margin: 0;
padding: 0;
overflow-x: hidden; /* << Belangrijk: geen horizontale scroll buiten de afbeelding */
}/* 2. Scrollbare afbeeldingscontainer */
#w_m4539 {
width: 736px;
height: 1200px;
overflow-x: auto; /* Alleen horizontaal scrollen in de container */
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}/* 3. De afbeelding zelf */
#m4539 {
display: block;
height: 100%; /* Past precies binnen 300px hoogte */
width: auto; /* Breedte schaalt mee (kan groter zijn dan 736px) */
max-width: none;
max-height: none;
}#w_m4539 {
max-width: 100vw;
width: 736px;
}
</style>