Answers for "scroll down style"

CSS
0

scroll down style

<script type="text/javascript">
$window.scrollTop(function(){ 

var a = 112;
var pos = $window.scrollTop();
if(pos > a) {
    $("menu").css({
                position: 'fixed'
            });
}
else {
    $("menu").css({
                position: 'absolute',
                top:'600px'
            });
}
});
</script>
Posted by: Guest on October-22-2020

Browse Popular Code Answers by Language