JS--回到顶部代码】的更多相关文章

HTML: <div id="goTop"> <a href="#top"><img src="~/Content/themes/base/images/ico_top.gif" alt="回到页首" title="回到页首 Top"></a> </div> CSS: #goTop { bottom: 15px; margin: 0 auto; p…
今天在博客园看到一片帖子回到顶部代码,索性就看了下,但是发现在非IE浏览器下可以运行,在IE浏览器下却运行不了. 故将其代码搬弄过来做了些许修改后,完美支持了IE下的运行. 主要实现功能代码文件: <html> <head> <title>兼容IE,chrome 等所有浏览器 回到顶部代码</title> <style type="text/css"> .fixed { position: fixed; /*对于火狐等其他浏览…
第一次知道可以用超链接(锚点)实现回到顶部的时候我是很震惊的,想着原来可以这么简单啊!但是作为一个正在学习JS的小白,不能就这么轻易止步,所以查资料自己整了一个JS返回顶部. HTML代码: ? 1 2 3 4 5 <div class="container">     <p>你好哇</p>     ... </div> <div id="top">回到顶部</div> CSS代码: ? 1 2…
[1]锚点 使用锚点链接是一种简单的返回顶部的功能实现.该实现主要在页面顶部放置一个指定名称的锚点链接,然后在页面下方放置一个返回到该锚点的链接,用户点击该链接即可返回到该锚点所在的顶部位置 [注意]关于锚点的详细信息移步至此   1 2 3 4 <body style="height:2000px;"> <div id="topAnchor"></div> <a href="#topAnchor" st…
可用如下方法: 1.平滑的回到顶部,但是会划过中间的每一页 mListView.getRefreshableView().smoothScrollToPosition(0); 2.直接跳到顶部 if (!mListView.getRefreshableView().isStackFromBottom()) { mListView.getRefreshableView().setStackFromBottom(true); } mListView.getRefreshableView().setS…
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" con…
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> .test{ background: #ff0000; width:100%; height: 5000px;; } .top{ width:50px; height:50px; position: fix…
.backToTop { display: none; width: 18px; line-height: 1.2; padding: 5px 0; background-color: #000; color: #fff; font-size: 12px; text-align: center; position: fixed; _position: absolute; right: 10px; bottom: 100px; _bottom: "auto"; cursor: point…
<style> /*默认样式,主要是position:fixed实现屏幕绝对定位*/ #gotoTop{display:none;position:fixed;top:75%;left:50%;cursor:pointer;margin-top:-50px;margin-left:520px;padding:9px 4px;width:20px;text-align:center;border:1px solid #e0e0e0;background:#fff;} /*用CSS表达式(expr…
x=x-20; 设置回到每10s的速度, function gotoTop(){ var x=document.body.scrollTop||document.documentElement.scrollTop; var timer = setInterval(function() { x=x-20; if(x<20) { x=0; window.scrollTo(x,x); clearInterval(timer); } window.scrollTo(x,x); },10); } 锚点设置…