I'm attempting to create a horizontal slide effect between two div
elements, so here is the HTML code:
<div id="container">
<div class="viewport-1">
<div class="inner-div">
<h1>Viewport background 1</h1></div>
</div>
<div class="viewport-2">
<div class="inner-div">
<h1>Viewport background 2</h1></div>
</div>
</div>
I have set the container width to 200vw and each div inside it to 100vw. The code works well on desktop view, but doesn't function properly on mobile devices.