<html>
<div id="sticky">
Hello
</div>
</html>
<script>
$(window).scroll(function(){
var sticky = $('#sticky'),
scroll = $(window).scrollTop();
if (scroll >= 30) sticky.addClass('fixed-dharam');
else sticky.removeClass('fixed-dharam');
});
</script>
<style>
.fixed {
position: fixed;
top:0; left:0;
width: 100%; }
</style>
<div id="sticky">
Hello
</div>
</html>
<script>
$(window).scroll(function(){
var sticky = $('#sticky'),
scroll = $(window).scrollTop();
if (scroll >= 30) sticky.addClass('fixed-dharam');
else sticky.removeClass('fixed-dharam');
});
</script>
<style>
.fixed {
position: fixed;
top:0; left:0;
width: 100%; }
</style>
No comments:
Post a Comment
Dharamart.blogspot.in