当前位置:   article > 正文

JS特效第141弹:jquery制作非常可爱的火箭筒返回顶部代码

JS特效第141弹:jquery制作非常可爱的火箭筒返回顶部代码

         jquery星空火箭置顶,网页返回页面顶部,有动画效果,先来看看效果:

        一部分关键的代码如下:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>超可爱的星空火箭置顶jquery特效</title>
  6. <style type="text/css">
  7. body{background:url(images/blog7year_videobg.png);}
  8. /* actGotop */
  9. .actGotop{position:fixed;top:0;margin:480px 0 0 0;right:50px;width:150px;height:195px;display:none;}
  10. *html .actGotop{position:absolute;top:expression(eval(document.documentElement.scrollTop));}
  11. .actGotop a,.actGotop a:link{width:150px;height:195px;display:inline-block;background:url(images/blog7year_gotop.png) no-repeat;_background:url(images/blog7year_gotop.gif) no-repeat;outline:none;}
  12. .actGotop a:hover{width:150px;height:195px;background:url(images/blog7year_gotopd.gif) no-repeat;outline:none;}
  13. </style>
  14. </head>
  15. <body style="height:3000px;">
  16. <div class="actGotop"><a href="javascript:;" title="Top"></a></div>
  17. <script type="text/javascript" src="js/jquery.min.js"></script>
  18. <script type="text/javascript">
  19. $(function(){
  20. $(window).scroll(function() {
  21. if($(window).scrollTop() >= 100){
  22. $('.actGotop').fadeIn(300);
  23. }else{
  24. $('.actGotop').fadeOut(300);
  25. }
  26. });
  27. $('.actGotop').click(function(){$('html,body').animate({scrollTop: '0px'}, 800);});
  28. });
  29. </script>
  30. </body>
  31. </html>

        全部代码:jquery制作非常可爱的火箭筒返回顶部代码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/90970
推荐阅读
相关标签
  

闽ICP备14008679号