码迷,mamicode.com
首页 > 其他好文 > 详细

返回顶部(解决IE6固定定位)

时间:2014-04-30 19:30:44      阅读:462      评论:0      收藏:0      [点我收藏+]

标签:返回顶部   com   http   blog   style   class   div   img   code   java   c   

bubuko.com,布布扣
 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" xml:lang="en">
 3 <head>
 4     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
 5     <title>Document</title>
 6     <style type="text/css">
 7         *{
 8             margin: 0px;
 9             padding: 0px;
10         }
11         html{
12             background: url(about:blank) fixed;
13         }
14         .back{
15             width: 57px;
16             height: 57px;
17             background: url(‘./back.png‘) no-repeat;
18             position: fixed;
19             right: 50px;
20             bottom: 50px;
21             _position: absolute;
22             _right: 50px;
23             _top:expression(document.documentElement.clientHeight-this.offsetHeight-50+document.documentElement.scrollTop);
24             cursor: pointer;
25             display: none;
26         }
27         body{
28             height: 5000px;
29             font-size: 22px;
30             font-weight:700;
31         }
32     </style>
33     <script type="text/javascript" src="./jquery.js"></script>
34     <script type="text/javascript">
35         $(function(){
36             var back = $(.back);
37             back.click(function() {
38                 var timer = setInterval(function(){
39                     $(window).scrollTop($(window).scrollTop()-50);
40                     if($(window).scrollTop() == 0){
41                         clearInterval(timer);
42                     }
43                 },2);
44             });
45 
46             $(window).scroll(function() {
47                 if($(window).scrollTop() < 100){
48                     back.hide(500);
49                 } else {
50                     back.show(500);
51                 }
52             });
53             
54         })
55     </script>
56 </head>
57 <body>
58     请往下拖动滚动条
59     <div class="back"></div>
60 </body>
61 </html>
bubuko.com,布布扣

 

返回顶部(解决IE6固定定位),布布扣,bubuko.com

返回顶部(解决IE6固定定位)

标签:返回顶部   com   http   blog   style   class   div   img   code   java   c   

原文地址:http://www.cnblogs.com/ahwu/p/3699015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!