91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

原生js實現網頁頂部自動下拉/收縮廣告效果

發布時間:2020-10-23 00:09:33 來源:腳本之家 閱讀:281 作者:夏天不做夢 欄目:web開發

知識要點

1.實現原理:

通過遞歸改變div的高度值達到緩慢下拉的效果。

2.一共分為3個步驟我寫了三個函數

第一個show()函數(下拉):初始值高度h<300的話 h+5  反之return退出停止,調用setTimeout方法30毫秒執行一次+5

第二個hide()函數(收回):只是高度的判斷不同高度h-5 反之return退出停止,調用setTimeout方法30毫秒執行一次-5

第三個dd()函數(再次彈出):這里要注意的是第二次彈出的div是一個新的div把它的高度設置為0,實現原理與第一個函數一樣,

并且一定要在第二個函數(收回)執行后再執行

完整代碼

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>demo</title>
<style>
body,h2,h3,h4,h5,h6,h7,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0;}
h2,h3,h4,h5,h6,h7{font-size:100%;}
address,cite,dfn,em,var{font-style:normal;}
code,kbd,pre,samp{font-family:courier new,courier,monospace;}
ul,ol{list-style:none;}
a{text-decoration:none;}
a:hover{text-decoration:none;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
legend{color:#000;}
fieldset,img{border:0;}
button,input,select,textarea{font-size:100%;}
table{border-collapse:collapse;border-spacing:0;}
.clear{clear: both;float: none;height: 0;overflow: hidden;}
#container{width: 600px; margin: 0 auto;}
p{ line-height: 28px; }
.hidden{background: #E6E6E6; text-align: center; height: auto; overflow: hidden;}
.show{ background: #808080;text-align: center; height: 0; overflow: hidden; }
</style> 
</head> 
<body>
 <div id="container">
  <div class="hidden" id="hid"><p>廣告圖</p></div>
  <div class="show" id="sho"><p>哈哈哈哈改裝成功</p></div>
 </div>
 <script type="text/javascript"> 
 window.onload=function aa(){
 show();
 setTimeout("hide()",3000);
 }
 var h=0;
 var hid=document.getElementById("hid");
 var sho=document.getElementById("sho");
 function show(){
 if(h<300){
  h+=5;
  hid.style.height=h+"px";
 }else{
  return;
 }
 setTimeout("show()",30);
 } 
 function hide(){
 if(h>0){
  h-=5;
  hid.style.height=h+"px";
 }else{
  dd();
  return;
 }
 setTimeout("hide()", 30);
 }
 var a=0;
 function dd(){
 if(a<60){
  a+=1;
  sho.style.height=a+"px";
 }else{
  return;
 }
 setTimeout("dd()",30);
 }
 </script>
</body> 
</html> 

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

工布江达县| 泗洪县| 山东| 太保市| 石城县| 新郑市| 澎湖县| 阳朔县| 溧阳市| 黄山市| 遂川县| 昌图县| 铁岭市| 广宁县| 安泽县| 营山县| 县级市| 新巴尔虎右旗| 资源县| 甘南县| 普宁市| 沁水县| 靖江市| 梅州市| 惠东县| 阳江市| 湖南省| 屯门区| 陵川县| 且末县| 淳安县| 武平县| 汪清县| 买车| 库车县| 镇坪县| 田林县| 大悟县| 开原市| 察雅县| 凤台县|