前幾天 在我同事博客里面看到一篇幻燈片 所以覺得用Jqeury寫幻燈片也并不是很難 就是和我在博客里面的tab自動(dòng)切換的原理是一模一樣的 只是形式不同而已!所以今天也寫了一個(gè)常見的幻燈片效果 用Jquery寫的 很簡單 也是用我上次tab自動(dòng)切換的js 所以原理沒有什么可說的 不懂的可以看看上次寫的TAB自動(dòng)切換代碼:下面的一張截圖:
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了橫峰免費(fèi)建站歡迎大家使用!
就是類似這種幻燈片:
下面是HTML結(jié)構(gòu)和CSS樣式
無標(biāo)題文檔
JS代碼如下:
- // JavaScript Document
- function tabMarquee(obj,count){
- _this = this;
- _this.obj = obj;
- _this.count = count;
- _this.time = 3000; //停留的時(shí)間
- _this.n = 0;
- var t;
- this.slider = function(){
- $(_this.obj + " .menu li").bind("mouseover",function(event){
- $(event.target).addClass("current").siblings().removeClass("current");
- var index = $(_this.obj + " .menu li").index(this);
- $(_this.obj + " .content-main .content").eq(index).show().siblings().hide();
- _this.n = index;
- })
- }
- this.addHover = function(){
- $(_this.obj).hover(function(){
- clearInterval(t);
- },function(){
- t = setInterval(_this.autoPlay,_this.time);
- })
- }
- this.autoPlay = function(){
- _this.n = _this.n >=(_this.count-1) ? 0 : ++_this.n;
- $(_this.obj + " .menu li").eq(_this.n).trigger("mouseover");
- }
- this.factory = function(){
- this.slider();
- this.addHover();
- t = setInterval(this.autoPlay,_this.time);
- }
- this.factory();
- }
下面?zhèn)鱾€(gè)附件 看不懂可以下載下來先看看效果 然后稍微理解下 就ok了!其實(shí)說真的js重要 但是HTML結(jié)構(gòu)和CSS樣式同樣重要 有時(shí)結(jié)構(gòu)寫好的話 css寫好的話 js就很簡單??!