小編給大家分享一下怎么使用原生JS實(shí)現(xiàn)愛奇藝首頁導(dǎo)航欄,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)建站是一家專注于成都網(wǎng)站建設(shè)、成都網(wǎng)站制作與策劃設(shè)計(jì),米易網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:米易等地區(qū)。米易做網(wǎng)站價(jià)格咨詢:13518219792
最近接到領(lǐng)導(dǎo)的任務(wù),要給外面的學(xué)生上幾節(jié)前端課,備課的時(shí)候準(zhǔn)備了一些小項(xiàng)目,在此記錄一下。
以下是愛奇藝首頁的一個(gè)導(dǎo)航欄,用原生js寫的,靜態(tài)頁面效果如下:
代碼如下:
<html> <head> <title>愛奇藝</title> <meta charset="utf-8"> <style type="text/css"> * { padding: 0; margin: 0; } .wrap { height: 520px; background-color: #000; width: 100%; } .wrap .img-wrap { height: 100%; margin: 0 auto; background-image: url('1.jpg'); background-repeat: no-repeat; background-position: 50% 50%; background-size: auto 100%; position: relative; } /* 媒體查詢 */ @media screen and (max-width: 2000px) { .wrap .img-wrap .item-list { right: 10%; } } @media screen and (max-width: 1600px) { .wrap .img-wrap .item-list { right: 8%; } } @media screen and (max-width: 1300px) { .wrap .img-wrap .item-list { right: 5%; } } .wrap .img-wrap .item-list { box-sizing: border-box; height: 100%; background-color: rgba(0,0,0,0.7); width: 280px; position: absolute; list-style: none; padding: 10px 0; } .wrap .img-wrap .item-list li { padding: 0 15px; } .wrap .img-wrap .item-list li.active { /*background-color: -webkit-linear-gradient(left, rgba(0,0,0,.3), rgba(0,0,0,0.1));*/ background: linear-gradient(to right, rgba(0,0,0,.5), rgba(0,0,0,0)); cursor: pointer; } .wrap .img-wrap .item-list li span { line-height: 40px; color: #eee; font-size: 16px; } .wrap .img-wrap .item-list li.active span { color: #00be06; display: block; } .wrap .img-wrap .item-list li.active span:nth-child(1) { font-size: 24px; transition: font-size 0.2s; } .wrap .img-wrap .item-list li.active span:nth-child(2) { display: none; } </style> </head> <body> <div class="wrap"> <div class="img-wrap"> <ul class="item-list"> </ul> </div> </div> <script type="text/javascript"> let items = [ { title: '遇見幸福', desc: '24點(diǎn)體會(huì)人生百味', url: '1.jpg' }, { title: '中國(guó)達(dá)人秀', desc: '真假岳岳在線劈叉', url: '2.jpg' }, { title: '中國(guó)新說唱', desc: '全國(guó)4強(qiáng)誕生!', url: '3.jpg' }, { title: '做家務(wù)', desc: '魏大勛花錢做音樂', url: '4.jpg' }, { title: '掃毒2', desc: '劉德華硬戰(zhàn)古天樂', url: '5.jpg' }, { title: '加油', desc: '郝澤寧隔屏告白福子', url: '6.jpg' }, { title: '小歡喜', desc: '宋倩喬衛(wèi)東重歸于好', url: '7.jpg' }, { title: '謀愛上癮', desc: '契約夫婦遇感情危機(jī)', url: '8.jpg' }, { title: '此食此客', desc: '啤酒花蛤夏日絕配', url: '9.jpg' }, { title: '愛奇藝特別策劃', desc: '我們的70年', url: '10.jpg' } ]; // 需要展示的數(shù)據(jù),通常從后端獲取 let curIndex = 0; // 當(dāng)前索引 let isAutoMove = true; // 是否可以自動(dòng)改變圖片 let interval = 1000; // 自動(dòng)輪播的間隔時(shí)間 // 封裝函數(shù):生成新的標(biāo)簽 function createTag(tag) { return document.createElement(tag); } // 封裝函數(shù):生成文本節(jié)點(diǎn) function createText(text) { return document.createTextNode(text); } // 封裝函數(shù):初始化列表 function initItemList() { let ul = document.getElementsByClassName('item-list')[0]; for (let i = 0; i < items.length; i++) { let li = createTag('li'); if (i == 0) { li.classList.add('active') } let span1 = createTag('span'); let span2 = createTag('span'); let span3 = createTag('span'); let text1 = createText(items[i].title); let text2 = createText(':'); let text3 = createText(items[i].desc); span1.appendChild(text1); span2.appendChild(text2); span3.appendChild(text3); li.appendChild(span1); li.appendChild(span2); li.appendChild(span3); ul.appendChild(li); addHoverListener(li, i); } } // 鼠標(biāo)hover右側(cè)欄時(shí)改變背景圖片及文字樣式 function addHoverListener(trigger, index) { trigger.addEventListener('mouseenter', function () { curIndex = index; // 保存當(dāng)前索引 changeImage(); activeText(); }); } // 根據(jù)index改變背景圖片 function changeImage() { console.log('curIndex: ', curIndex); let imgUrl = items[curIndex].url; let imgWrap = document.getElementsByClassName('img-wrap')[0]; imgWrap.style.cssText = "background-image: url('" + imgUrl + "')"; } // 根據(jù)index改變右側(cè)激活文本的樣式 function activeText() { let activeObj = document.getElementsByClassName('active')[0]; let li = document.getElementsByTagName('li')[curIndex]; if (activeObj) { activeObj.classList.remove('active'); } li.classList.add('active'); } // 鼠標(biāo)移入移出wrap區(qū)域時(shí)響應(yīng)關(guān)閉、開啟自動(dòng)輪播 function addEnterListener() { let wrap = document.getElementsByClassName('wrap')[0]; wrap.addEventListener('mouseenter', function () { isAutoMove = false; }); wrap.addEventListener('mouseleave', function () { isAutoMove = true; }); } // 定時(shí)切換圖片:使用定時(shí)器setInterval(function(){}, time) function autoMove() { let timer = setInterval(function () { if (isAutoMove) { if (curIndex < 9) { curIndex ++; } else { curIndex = 0; } changeImage(); activeText(); } }, interval); } window.onload = function () { initItemList(); addEnterListener(); autoMove(); } </script> </body> </html>
看完了這篇文章,相信你對(duì)“怎么使用原生JS實(shí)現(xiàn)愛奇藝首頁導(dǎo)航欄”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
網(wǎng)站標(biāo)題:怎么使用原生JS實(shí)現(xiàn)愛奇藝首頁導(dǎo)航欄
當(dāng)前路徑:http://m.rwnh.cn/article20/jipsjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、建站公司、動(dòng)態(tài)網(wǎng)站、響應(yīng)式網(wǎng)站、外貿(mào)建站、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)