怎么在JavaScript中利用面向?qū)ο髮?shí)現(xiàn)一個(gè)無縫滾動(dòng)輪播?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、新泰網(wǎng)絡(luò)推廣、小程序制作、新泰網(wǎng)絡(luò)營(yíng)銷、新泰企業(yè)策劃、新泰品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供新泰建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:www.rwnh.cn
JavaScript面向?qū)ο蟛糠秩缦拢?/p>
function Seamless(obj) { this.obj = document.getElementById(obj); this.oXSlide = GLOBAL.Dom.getElementsByClassName('J_XSlide', this.obj)[0]; this.li = this.oXSlide.getElementsByTagName('li'); this.liTabs = GLOBAL.Dom.getElementsByClassName('tabs', this.obj)[0].getElementsByTagName('li'); this.iNow = 0; this.timer = null; this.playTime = 2000; this.init(); } Seamless.prototype = { // 初始化 init: function() { var _this = this; this.timer = setInterval(function(){ _this.autoPlay(); }, this.playTime); this.overOut(); this.tab(); }, tab: function() { var _this = this; var btn = GLOBAL.Dom.getElementsByClassName('btn', this.obj); this.oXSlide.style.width = this.li.length * this.li[0].offsetWidth + 'px'; for(var i = 0, len = this.liTabs.length; i < len; i++) { this.liTabs[i].index = i; GLOBAL.Event.addHandler(this.liTabs[i], 'mouseover', function() { _this.showItem(this.index); }); } GLOBAL.Event.addHandler(btn[0], 'click', function() { _this.moveLeft(); }); GLOBAL.Event.addHandler(btn[1], 'click', function() { _this.moveRight(); }); }, // 移入移出時(shí),輪播暫停與開始 overOut: function() { var _this = this; GLOBAL.Event.addHandler(this.obj, 'mouseover', function() { clearInterval(_this.timer); }); GLOBAL.Event.addHandler(this.obj, 'mouseout', function() { _this.timer = setInterval(function() { _this.autoPlay(); }, _this.playTime); }); }, autoPlay: function() { this.moveRight(); }, // 選項(xiàng)卡 showItem:function (n) { for(var i = 0, len = this.liTabs.length; i < len; i++) { this.liTabs[i].className = 'tab'; } if(n == this.liTabs.length) { this.liTabs[0].className = 'tab cur'; } else { this.liTabs[n].className = 'tab cur'; } startMove(this.oXSlide, {'left': -n * this.li[0].offsetWidth}); }, moveLeft:function () { this.iNow--; if(this.iNow == -1) { this.oXSlide.style.left = -this.liTabs.length * this.li[0].offsetWidth + 'px'; this.iNow = this.liTabs.length - 1; } this.showItem(this.iNow); }, moveRight:function () { this.iNow++; if(this.iNow == this.li.length) { this.oXSlide.style.left = 0; this.iNow = 1; } this.showItem(this.iNow); } }; new Seamless('box');
關(guān)于怎么在JavaScript中利用面向?qū)ο髮?shí)現(xiàn)一個(gè)無縫滾動(dòng)輪播問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
名稱欄目:怎么在JavaScript中利用面向?qū)ο髮?shí)現(xiàn)一個(gè)無縫滾動(dòng)輪播
網(wǎng)站路徑:http://www.rwnh.cn/article0/jihdio.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、做網(wǎng)站、網(wǎng)站營(yíng)銷、小程序開發(fā)、微信小程序、用戶體驗(yàn)
聲明:本網(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)