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

常見返回頂部效果

??? 2018-11-27 08:43:11 223
????:<!DOCTYPE html> <html>     <head>         <title>頁面中常見返回頂部效果(TOP)</title>      &
<!DOCTYPE html>
<html>
    <head>
        <title>頁面中常見返回頂部效果(TOP)</title>
        <meta charset="UTF-8">
        <link rel="shortcut icon"  href="static/images/logo.png" type="image/x-icon" />
        <!-- <link rel="stylesheet" href="static/css/style.css" type="text/css"> -->
        <link rel="stylesheet" type="text/css" href="static/font-awesome/css/font-awesome.min.css">
        <script src="static/js/jquery.js"></script>  
        <style type="text/css">
            *{margin: 0px;padding: 0px;}
            body{text-align: center;}
            div{width: 1200px;height: 1500px;background: #eee;margin: 30px auto;}
            a{text-decoration: none;color: #fff;}
            p#back{text-align: center;position: fixed;bottom: 100px;right: 60px;background: #ccc;border-radius: 3px;height: 50px;width: 80px;display: none;}
        </style>
        <script>
        	$(function() {
        		$(window).scroll(function(){
        			if($(window).scrollTop()>150){
        				$('#back').fadeIn(1000)
        			}else{
        				$('#back').fadeOut(1000)
        			}
        		})
        	})
       </script>
    </head>
    <body>
    	<a href=""></a>
    	<div>網(wǎng)頁內(nèi)容</div>
    	<p id="back"><a href=""><span class="fa fa-arrow-circle-up"></span><br> 返回頂部</a></p>
   
    </body>
</html>

```javascript

$(function() {
        $(window).scroll(function(){
             if($(window).scrollTop()>150){
                      $('#back').fadeIn(1000)
                 }else{
                     $('#back').fadeOut(1000)
                         }
                 })
        })

```

?? ???:韋小寶?? ??:2018-11-27 09:20:02
???? ??:嗯!寫的很完整!同樣的在很多網(wǎng)站中都會出現(xiàn)這種效果!掌握它是很重要的!

??? ??

?? ??