继小鹏通过本文主要向大家介绍了原生js轮播图,原生js写轮播图,原生js轮播图代码,原生js实现图片轮播,原生js写轮播等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
话不多说,请看代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>无缝轮播图-原生js封装</title> <link rel="shortcut icon" href="../public/image/favicon.ico" type="images/x-icon"/> <link rel="icon" href="../public/image/favicon.png" type="images/png"/> <link rel="stylesheet" type="text/css" href="../public/style/cssreset-min.css"> <link rel="stylesheet" type="text/css" href="../public/style/common.css"> <style type="text/css"> /*公共*/ html{ height:100%; } body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td { margin: 0; padding: 0 } body{ position: relative; min-height:100%; font-size:14px; font-family: Tahoma, Verdana,"Microsoft Yahei"; color:#333; } a{ text-decoration: none; color:#333; } .header{ width: 960px; padding-top: 15px; margin: 0 auto; line-height: 30px; text-align: right; } .header a{ margin: 0 5px; } .main{ width:960px; margin: 50px auto 0; } .code{ border:1px dashed #e2e2e2; padding:10px 5px; margin-bottom:25px; } pre { font-family: "Microsoft Yahei",Arial,Helvetica; white-space: pre-wrap; /*css-3*/ white-space: -moz-pre-wrap; /*Mozilla,since1999*/ white-space: -pre-wrap; /*Opera4-6*/ white-space: -o-pre-wrap; /*Opera7*/ word-wrap: break-word; /*InternetExplorer5.5+*/ } .example{ padding-top:40px; margin-bottom:90px; } .example .call{ padding:18px 5px; background:#f0f5f8; } .example h2{ padding-top:20px; margin-bottom:7px; } .example table { width:100%; table-layout:fixed; border-collapse: collapse; border-spacing: 0; border: 1px solid #cee1ee; border-left: 0; } .example thead { border-bottom: 1px solid #cee1ee; background-color: #e3eef8; } .example tr { line-height: 24px; font-size: 13px; } .example tr:nth-child(2n) { background-color: #f0f5f8; } .example tr th,.example tr td { border-left: 1px solid #cee1ee; word-break: break-all; word-wrap: break-word; padding:0 10px; font-weight: normal; } .example tr th { color: #555; padding-top: 2px; padding-bottom: 2px; text-align: left; } /*公共*/ .bannerha-container{ width: 800px; height: 300px; margin: 20px auto; overflow: hidden; position: relative; } .bannerha-wrapper{ width: 100%; height: 100%; position: absolute; display: -webkit-box; display: box; } .bannerha-slide{ background: #ccc; list-style: none; width: 100%; height: 100%; text-align: center; font-size: 18px; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; } .bannerha-pagination{ position: absolute; text-align: center; z-index: 10; bottom: 10px; left: 0; width: 100%; } .bannerha-pagination-bullet{ width: 8px; height: 8px; display: inline-block; border-radius: 100%; background: #fff; opacity: .5; margin: 0 4px; } .bannerha-pagination-bullet-active{ opacity: 1; background: #ff0; } .bannerha-button{ width: 100px; height: 100%; position: absolute; top: 0; background-color: #333; z-index: 1; cursor: pointer; filter: alpha(opacity:20); opacity: 0.2; -webkit-transition: all .2s ease-in; -moz-transition: all .2s ease-in; -ms-transition: all .2s ease-in; -o-transition: all .2s ease-in; transition: all .2s ease-in; } .bannerha-button.active{ filter: alpha(opacity:60); opacity: 0.6; } .bannerha-button-prev{ left:0; } .bannerha-button-next{ right:0; } </style> <script type="text/javascript"> /*封装代码*/ (function() { var Bannerha = function(e, opts) { var self = this; var defaults = { circle: true, speeds: 20, pnBtn: true, autoPlay: true, times: 3000 } opts = opts || {}; for (var w in defaults) { if ("undefined" == typeof opts[w]) { opts[w] = defaults[w]; } } this.params = opts; this.container = r(e); if (this.container.length > 1) { var x = []; return this.container.each(function() { x.push(new Bannerha(this, opts)) }), x } this.containers = this.container[0]; this.oUl = this.container.find(".bannerha-wrapper")[0]; this.liW = this.oUl.children[0].offsetWidth; this.len = this.oUl.children.length; this.flag = true; this.num = 1; this.timer = null; this.timers = null; this.init(); } Bannerha.prototype = { init: function() { var self = this; this.clone(); if (this.params.pnBtn) { this.pnBtn(); } if (this.params.circle) { this.circle(); } if (this.params.autoPlay) { this.plays(); this.boxmove() } }, boxmove: function() { var self = this; this.container[0].addEventListener('mouseout', function(e) { self.plays(); }, false); this.container[0].addEventListener('mouseover', function(e) { self.stops(); }, false); }, plays: function() { var self = this; this.timers = setInterval(function() { self.go(-self.liW); }, self.params.times); }, stops: function() { clearInterval(this.timers) }, clone: function() { var fir = this.oUl.children[0].cloneNode(true), last = this.oUl.children[this.len - 1].cloneNode(true); this.oUl.appendChild(fir); this.oUl.insertBefore(last, this.oUl.children[0]); this.len = this.oUl.children.length; this.oUl.style.left = -this.liW + 'px'; }, pnBtn: function() { var self = this; this.container.append('<div class="bannerha-button bannerha-button-prev"></div><div class="bannerha-button bannerha-button-next"></div>'); this.container[0].addEventListener('click', function(e) { self.events(e) }, false); this.container[0].addEventListener('mouseover', function(e) { self.eventsover(e) }, false); }, circle: function() { var self = this; var pagination = document.createElement("div"); pagination.className = "bannerha-pagination"; for (var i = 0; i < self.len - 2; i++) { var btnspan = document.createElement("span"); btnspan.className = "bannerha-pagination-bullet"; pagination.appendChild(btnspan); } this.containers.appendChild(pagination); this.bullet = this.container.find(".bannerha-pagination-bullet"); this.bullet[0].classList.add("bannerha-pagination-bullet-active"); for (var i = 0; i < this.bullet.length; i++) { ! function(i) { self.bullet[i].addEventListener('click', function(e) { if (!self.flag) { return; } if (this.className.indexOf('bannerha-pagination-bullet-active') > -1) { return; } var myIndex = i - (self.num - 1); var offset = -self.liW * myIndex; self.go(offset); self.num = i + 1; self.showButton(); }, false); }(i); } }, events: function(e) { var self = this; var oSrc = e.srcElement || e.target; if (oSrc.tagName.toLowerCase() == 'div' && oSrc.className.indexOf('bannerha-button-prev') > -1) { if (!this.flag) { return; } self.go(this.liW); if (self.params.circle) { self.showButton(); } } if (oSrc.tagName.toLowerCase() == 'div' && oSrc.className.indexOf('bannerha-button-next') > -1) { if (!this.flag) { return; } self.go(-this.liW); if (self.params.circle) { self.showButton(); } } }, eventsover: function(e) { var self = this; var oSrc = e.srcElement || e.target; if (oSrc.className.indexOf('bannerha-button') > -1) { oSrc.classList.add("active") oSrc.addEventListener('mouseout', function(e) { oSrc.classList.remove("active"); }, false); } }, showButton: function() { var self = this; var num = this.num - 1; for (var i = 0; i < this.bullet.lengt