现在开始我们准备css代码
代码如下 | 复制代码 |
#toTop { width:50px; height:50px; background:#fff url(image.png);//这个图片为你点击返回图标效果 position:fixed; left: 50%; margin-left: 510px; bottom:50px; cursor:pointer; display:none; } |
现在在你的页面低部加入
代码如下 | 复制代码 |
<div id="toTop"></div> <script type="text/javascript"> $(function() { $(window).scroll(function() { if($(this).scrollTop() != 0) { $('#toTop').fadeIn(); } else { $('#toTop').fadeOut(); } }); $('#toTop').click(function() { |
友情提示:注意上面我们没把jquery库文件引入进来,大家需要下载一个jquery文件哦,这里我就不介绍了。
时间: 2024-10-22 09:12:10