How to Create Minimum Sticky Videos on Scroll

Rabinder M

Last Update il y a 4 ans

Example: Java Script

Copy Black Text Below:


<style>

.test

{

position: fixed !important;

top: 0 !important;

left: 0 !important;;

right: 0 !important;;

z-index:999 !important;

width:300px !important;

height:200px !important;

}

</style>

<script>

window.onscroll = function() {myFunction()};

function myFunction() {

if (document.body.scrollTop > 90 || document.documentElement.scrollTop > 90) {

document.getElementById("video-PUTHERETHECSSVIDEOSELECTORCODE").className = "test";

} else {

document.getElementById("video-PUTHERETHECSSVIDEOSELECTORCODE").className = "";

}

}

</script>


End Copy

Example: CSS

Copy Black Text Below:


#video-PUTHERETHECSSVIDEOSELECTORCODE {

float: left;

}

Was this article helpful?

0 out of 0 liked this article