jquery經典例項之回到頂部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="GBK">
<title>回到頂部</title>
<style>
.divA {
height: 1500px;
}
.divB {
width: 50px;
height: 60px;
font-size: 23px;
background-color: green;
position: fixed;
right: 18px;
bottom: 18px;
}
.divB:hover{
cursor: pointer;
}
.hide {
display: none;
}
</style>
</head>
<body>
<div class="divA"></div>
<div class="divB hide" onclick="gotoTop()"><strong>回到頂部</strong></div>
<script src="jquery-1.5.1.js"></script>
<script>
window.onscroll = function () {
var current = $(window).scrollTop();
//縱向滾動條遮蓋高度超過180就顯示回到頂部div
if (current > 180){
$(".divB").removeClass("hide");
}else {
$(".divB").addClass("hide");
}
};
function gotoTop() {
$(window).scrollTop(0);
}
</script>
</body>
</html>
相關文章
- jQuery之回到頂部jQuery
- 回到頂部效果之加速置頂
- 回到頂部和回到頂部按鈕的顯示隱藏
- 點選回到頂部
- Python 入門之經典函式例項(二)Python函式
- vue中實現回到頂部功能Vue
- 每天一邊js -- 回到頂部JS
- js實現點選回到頂部JS
- jQuery 例項jQuery
- 從頁面底部回到頂部+動畫效果 & 翻頁後從按鈕處回到頁面頂部動畫
- 簡單實現點選回到頂部
- jQuery頂部帶有選項卡的焦點圖效果jQuery
- DL4J實戰之四:經典卷積例項(GPU版本)卷積GPU
- [轉載] Python 機器學習經典例項Python機器學習
- jQuery文字從頂部掉落效果jQuery
- 高度百分百 overflow:auto 回到頂部
- 原生JavaScript實現頁面回到頂部的功能JavaScript
- 基於js實現點選按鈕回到頂部JS
- jQuery Ajax 例項 全解析jQuery
- 直播軟體搭建,利用原生JS實現回到頂部以及吸頂效果JS
- app直播原始碼,利用原生JS實現回到頂部以及吸頂效果APP原始碼JS
- Python 入門之經典函式例項之Map-Reduce - 對映與歸約的思想Python函式
- 手機直播原始碼,點選按鈕,立即回到頂部原始碼
- 直播軟體搭建,點選按鈕自動回到頂部
- jQuery tab選項卡效果程式碼例項jQuery
- 這幾種方法幫你快速實現回到頁面頂部
- jQuery.map()方法程式碼例項jQuery
- Python3經典100例(①)Python
- C++ 經典案例1例C++
- 【神經網路篇】--基於資料集cifa10的經典模型例項神經網路模型
- jquery.idTabs.min.js選項卡程式碼例項jQueryJS
- jQuery Validate全域性配置和例項配置jQuery
- jQuery利用name匹配元素程式碼例項jQuery
- DL4J實戰之三:經典卷積例項(LeNet-5)卷積
- jQuery點選滑出層效果程式碼例項jQuery
- jQuery table表格隔行換色程式碼例項jQuery
- 直播軟體搭建,vue3 頁面回到頂部(平緩滾動效果)Vue
- js之返回網頁頂部JS網頁