jquery返回页面顶部

2021-07-01 15:05

阅读:602

标签:5.5   返回   log   pre   title   top   javascrip   ref   bsp   

1、此博文图片样式引用腾讯网站,效果如下:

技术分享

2、样式设置:

 1 #toTop {
 2        /*选中的背景图片的大小*/
 3     width: 54px;
 4     height: 54px;
 5     display: none;/*刚开始不显示*/
 6     position: fixed;
 7     right: 25px;/*距离右边大小值*/
 8     bottom: 45px;/*距离底部大小值*/
 9        /*选定图片区域*/
10     background-image: url(images/qqbg_1.5.5.png);
11     background-repeat: no-repeat;
12     background-position: -700px -110px;
13     opacity: 0.3; /*透明度*/
14 }
15 
16 #toTop:hover {
17     opacity: 1;/*悬停时不透明*/
18     filter: alpha(opacity = 100);
19 }

 

3、JS代码:

1 "#" target="_self" id="toTop" title="返回顶部" onclick="window.scrollTo(0,0);return false">
2 

 

jquery返回页面顶部

标签:5.5   返回   log   pre   title   top   javascrip   ref   bsp   

原文地址:http://www.cnblogs.com/ysx215/p/7132039.html


评论


亲,登录后才可以留言!