亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

仿愛(ài)奇藝回到頂部效果

Original 2019-05-22 22:26:07 204
abstract:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>回到頂部</title><link rel="stylesheet" href="static/css/style.cs

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>回到頂部</title>

<link rel="stylesheet" href="static/css/style.css" type="text/css">

<link rel="stylesheet" href="static/font-awesome/css/font-awesome.min.css">

<script src="static/js/jquery.js"></script>

<style>

.content {

width: 1000px;

height: 1500px;

background: #eee;

margin: 20px auto;

}

a {text-decoration: none;color: #999999;font-size: 26px;position:relative;}

#back {width: 38px;height: 38px;

border: 1px solid #ccc;

border-radius: 50%;

line-height: 40px;

text-align: center;

position: fixed;

bottom: 30px;

right: 60px;

display: none;

}

.top {

width: 110px;

height: 40px;

line-height: 40px;

background: #E0F7E2;

font-size: 13px;

text-align: center;

color: #21C627;

border-radius: 20px;

margin-right: 30px;

position: absolute;

top: -3px;

right: -41px;

float:left;

display: none;

z-index: -1;

}

a:hover {color: #21C627;}

a:hover .top{display: block;}

</style>

<script>

$(function(){

$(window).scroll(function(){

if($(window).scrollTop()>150) {

$('#back').fadeIn(1000);

}else{

$('#back').fadeOut(1000);

}

})

})

</script>

</head>


<body>

<a href=""></a>

<div class="content">網(wǎng)頁(yè)內(nèi)容</div>

<div id="back"><a href=""><span class="fa fa-angle-up"></span><div class="top">回到頂部</div></a></div>

</body>

</html>


Correcting teacher:查無(wú)此人Correction time:2019-05-23 13:23:03
Teacher's summary:完成的不錯(cuò),常用的css樣式可以寫(xiě)到公用文件里,每個(gè)項(xiàng)目都可以加載這一個(gè)公用文件。繼續(xù)加油。

Release Notes

Popular Entries