知識要點
成都創(chuàng)新互聯(lián)公司服務(wù)項目包括臨沭網(wǎng)站建設(shè)、臨沭網(wǎng)站制作、臨沭網(wǎng)頁制作以及臨沭網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,臨沭網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到臨沭省份的部分城市,未來相信會繼續(xù)擴大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
1.實現(xiàn)原理:
通過遞歸改變div的高度值達到緩慢下拉的效果。
2.一共分為3個步驟我寫了三個函數(shù)
第一個show()函數(shù)(下拉):初始值高度h<300的話 h+5 反之return退出停止,調(diào)用setTimeout方法30毫秒執(zhí)行一次+5
第二個hide()函數(shù)(收回):只是高度的判斷不同高度h-5 反之return退出停止,調(diào)用setTimeout方法30毫秒執(zhí)行一次-5
第三個dd()函數(shù)(再次彈出):這里要注意的是第二次彈出的div是一個新的div把它的高度設(shè)置為0,實現(xiàn)原理與第一個函數(shù)一樣,
并且一定要在第二個函數(shù)(收回)執(zhí)行后再執(zhí)行
完整代碼
<!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>
以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時也希望多多支持創(chuàng)新互聯(lián)!
當(dāng)前標(biāo)題:原生js實現(xiàn)網(wǎng)頁頂部自動下拉/收縮廣告效果
網(wǎng)址分享:http://www.rwnh.cn/article38/jdjpsp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、做網(wǎng)站、網(wǎng)站排名、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)