<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>回到頂部scrollTop</title>
<style type="text/css">
#button{width: 50px;height: 50px;border-radius: 50%;background: #000;opacity: 0.4;position: fixed;bottom: 30px;right: 30px;display: none;}
.content{background:-webkit-gradient(linear, 0 0, 0 100%, from(green), to(yellow));height: 2000px;width: 100%;}
</style>
</head>
<body>
<div id="button"></div>
<div class="content"></div>
<script>
// 回到頂部scrollTop
// 總時間(duration):500ms
//頻率(interval):多長時間走一步 10ms
//總距離(target):當前的位置(當前的scrollTop值)目標位置0仓犬;
// 步長(step):每一次走的距離 target/duration * interval 每一次走的距離
var button = document.getElementById("button");
window.onscroll = computedDisplay;
function computedDisplay(){
var curTop = document.documentElement.scrollTop || document.body.scrollTop;
var curHeight = document.documentElement.clientHeight || document.body.clientHeight;
button.style.display = curTop>curHeight?"block":"none";
}
button.onclick = function(){
this.style.display = "none";
window.onscroll = null;
var duration = 500,interval = 10,target = document.documentElement.scrollTop || document.body.scrollTop;
var step = (target/duration) * interval;
var timer = window.setInterval(function(){
var curTop = document.documentElement.scrollTop || document.body.scrollTop;
if(curTop ===0){
window.clearInterval(timer);
window.onscroll = computedDisplay;//動畫結(jié)束后方法重新綁定
return;
}
curTop -=step;
document.documentElement.scrollTop = curTop;
document.body.scrollTop = curTop;
},interval);
}
</script>
</body>
</html>
js點擊按鈕滾動到頂部
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門近弟,熙熙樓的掌柜王于貴愁眉苦臉地迎上來缅糟,“玉大人,你說我怎么就攤上這事祷愉〈盎拢” “怎么了?”我有些...
- 文/不壞的土叔 我叫張陵二鳄,是天一觀的道長赴涵。 經(jīng)常有香客問我,道長订讼,這世上最難降的妖魔是什么髓窜? 我笑而不...
- 正文 為了忘掉前任,我火速辦了婚禮欺殿,結(jié)果婚禮上寄纵,老公的妹妹穿的比我還像新娘。我一直安慰自己祈餐,他們只是感情好擂啥,可當我...
- 文/花漫 我一把揭開白布哄陶。 她就那樣靜靜地躺著帆阳,像睡著了一般。 火紅的嫁衣襯著肌膚如雪屋吨。 梳的紋絲不亂的頭發(fā)上蜒谤,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼濒募!你這毒婦竟也來了鞭盟?” 一聲冷哼從身側(cè)響起,我...
- 正文 年R本政府宣布梯醒,位于F島的核電站,受9級特大地震影響腌紧,放射性物質(zhì)發(fā)生泄漏茸习。R本人自食惡果不足惜,卻給世界環(huán)境...
- 文/蒙蒙 一壁肋、第九天 我趴在偏房一處隱蔽的房頂上張望号胚。 院中可真熱鬧,春花似錦浸遗、人聲如沸猫胁。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽弃秆。三九已至,卻和暖如春髓帽,著一層夾襖步出監(jiān)牢的瞬間菠赚,已是汗流浹背。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- <!DOCTYPE html> *{margin: 0;padding: 0;}.test{border...
- 只有一個ScrollView的時候 我們在使用App的時候械拍,經(jīng)常會看到這樣的效果,當我們點擊狀態(tài)欄的時候装盯,我們已經(jīng)...
- 背景 現(xiàn)在有許多 app 都有這個需求, 點擊 statusBar, tableView/collectionvi...