本篇內(nèi)容主要講解“怎么用javascript實現(xiàn)旋轉(zhuǎn)木馬”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么用javascript實現(xiàn)旋轉(zhuǎn)木馬”吧!
定日網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站開發(fā)等網(wǎng)站項目制作,到程序開發(fā),運營維護。成都創(chuàng)新互聯(lián)于2013年成立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)。
javascript實現(xiàn)旋轉(zhuǎn)木馬的方法:1、創(chuàng)建好HTML基礎(chǔ)代碼文件;2、初始化reset;3、通過js代碼“function animate(obj, json, fn) {...}”方法實現(xiàn)旋轉(zhuǎn)木馬效果即可。
本文操作環(huán)境:windows7系統(tǒng)、javascript1.8.5版,DELL G3電腦。
javascript怎么實現(xiàn)旋轉(zhuǎn)木馬?
JavaScript實現(xiàn)旋轉(zhuǎn)木馬輪播圖的具體代碼,供大家參考,具體內(nèi)容如下:
html代碼段
圖片自己添加,或者使用本人的上傳照片,拉到最下面即可看見
css代碼段:
初始化 reset
blockquote, body, button, dd, dl, dt, fieldset, form, h2, h3, h4, h5, h6, h7, hr, input, legend, li, ol, p, pre, td, textarea, th, ul { margin: 0; padding: 0 } body, button, input, select, textarea { font: 12px/1.5 "Microsoft YaHei", "微軟雅黑", SimSun, "宋體", sans-serif; color: #666; } ol, ul { list-style: none; } a { text-decoration: none; } fieldset, img { border: 0; vertical-align: top; } a, input, button, select, textarea { outline: none; } a, button { cursor: pointer; } .wrap { width: 1200px; margin: 100px auto; } .slide { height: 500px; position: relative; } .slide li { position: absolute; left: 200px; top: 0; } .slide li img { width: 100%; } .arrow { opacity: 0; position: absolute; top: 50%; z-index: 1000; width: 100%; } .prev, .next { width: 76px; height: 112px; position: absolute; z-index: 99; } .prev { left: 0; background: url(../images/prev.png) no-repeat; } .next { right: 0; background-image: url(../images/next.png); }
js代碼段:
這個是封裝好的的js代碼,直接引用即可
function animate(obj, json, fn) { clearInterval(obj.timer); obj.timer = setInterval(function () { var flag = true; for (var k in json) { if (k === "opacity") { var leader = getStyle(obj, k) * 100; var target = json[k] * 100; var step = (target - leader) / 10; step = step > 0 ? Math.ceil(step) : Math.floor(step); leader = leader + step; obj.style[k] = leader / 100; } else if (k === "zIndex") { obj.style.zIndex = json[k]; } else { var leader = parseInt(getStyle(obj, k)) || 0; var target = json[k]; var step = (target - leader) / 10; step = step > 0 ? Math.ceil(step) : Math.floor(step); leader = leader + step; obj.style[k] = leader + "px"; } if (leader != target) { flag = false; } } if (flag) { clearInterval(obj.timer); if (fn) { fn(); } } }, 15); } function getStyle(obj, attr) { if (window.getComputedStyle) { return window.getComputedStyle(obj, null)[attr]; } else { return obj.currentStyle[attr]; } }
定義onload函數(shù),獲取每一個對象,設(shè)置鼠標經(jīng)過事件,鼠標經(jīng)過輪播圖 讓箭頭漸漸地顯示 鼠標離開漸漸消失;然后.設(shè)置圖片位置(給對象賦值)
window.onload = function () { //alert("外部的JS"); //找人 var wrap = document.getElementById("wrap"); var arrow = document.getElementById("arrow"); var arrLeft = document.getElementById("arrLeft"); var arrRight = document.getElementById("arrRight"); var slide = document.getElementById("slide"); var ul = slide.children[0]; var lis = ul.children;//所有圖片 //1.鼠標經(jīng)過輪播圖 讓箭頭漸漸地顯示 鼠標離開漸漸消失 wrap.onmouseover = function () { animate(arrow, {"opacity": 1}); }; wrap.onmouseout = function () { animate(arrow, {"opacity": 0}); }; //2.設(shè)置圖片位置 var config = [ { "width": 400, "top": 20, "left": 50, "opacity": 0.2, "zIndex": 2 },//0 { "width": 600, "top": 70, "left": 0, "opacity": 0.8, "zIndex": 3 },//1 { "width": 800, "top": 100, "left": 200, "opacity": 1, "zIndex": 4 },//2 { width: 600, top: 70, left: 600, opacity: 0.8, zIndex: 3 },//3 { "width": 400, "top": 20, "left": 750, "opacity": 0.2, "zIndex": 2 }//4 ];//其實就是一個配置單 規(guī)定了每張圖片的大小位置層級透明度 //獲取頁面上所有的li 讓他們從當前的位置 以動畫的效果到指定的位置 function assign() { for (var i = 0; i < lis.length; i++) { animate(lis[i], config[i], function () { flag = true;//動畫執(zhí)行完成后重新打開閥門 }); } } assign(); //3.點擊箭頭旋轉(zhuǎn) //點擊右箭頭 arrRight.onclick = function () { if (flag) { flag = false;//關(guān)閉閥門 //把開始的元素放到最后 config.push(config.shift()); assign(); } }; //點擊左箭頭 arrLeft.onclick = function () { if (flag) { flag = false; //把最后的元素放到開始 config.unshift(config.pop()); assign(); } }; //4.添加節(jié)流閥 var flag = true;//表示閥門是打開的 };
到此,相信大家對“怎么用javascript實現(xiàn)旋轉(zhuǎn)木馬”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!