Scale an image to fully cover the viewports width and height but leave it uncut and add scrollbars [closed]
Closed 2 hours ago.
Scale an image to fully cover the viewports width and height but leave it uncut and add scrollbars [closed]
Closed 2 hours ago.
Scale an image to fully cover the viewports width and height but leave it uncut and add scrollbars [closed]
Closed 2 hours ago.
Scale an image to fully cover the viewports width and height but leave it uncut and add scrollbars [closed]
Closed 2 hours ago.
Scale an image to fully cover the viewports width and height but leave it uncut and add scrollbars [closed]
Closed 2 hours ago.
Scale an image to fully cover the viewports width and height but leave it uncut and add scrollbars [closed]
Closed 2 hours ago.
Scroll animation problem,the new class isnt being added to my first class [closed]
Closed 8 days ago.
slider move till the center of the desktop not to top when i clicked
First of all, I tried to do by CSS but, it’s not happen here.
when I clicked on menu where are title of that page, that section scroll up but the my header is sticky, so the section title has being hidden behind header.
Dynamically expand a 12 col grid
I have 2 rows consisting of 12 cols
and a test button which should expand the first col of first row after each click.
Scroll animation javascript
*CSS* .decSquare5 { height: 250px; width: 4%; border: none; background-color: #9b9b9b; opacity: 0.3; position: relative; z-index: 2; top: 300px; left: 1%; margin-top: -250px; transform: translateX(400%); transition: 0.5s; } .decSquare5.show { transform: translateX(0); } *JS* const boxes = document.querySelectorAll(“.decSquare5”) window.addEventListener(“scroll”, () => { const innerHeightOfWindow = window.innerHeight; boxes.forEach(box => { const boxTop = box.getBoundingClientRect().top if(boxTop < […]