91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用mootools1.3框架怎么實現一個圖片滑動效果

發布時間:2021-06-19 08:16:17 來源:億速云 閱讀:185 作者:Leah 欄目:web開發

本篇文章給大家分享的是有關使用mootools1.3框架怎么實現一個圖片滑動效果,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

實現原理:

容器采用相對定位,圖片采用絕對定位,當鼠標移動到相應的圖片上,改變去left屬性,用tween實現動畫效果.

代碼分析:寫一個picSlider類實現代碼封裝

<div id="container">          <img src="http://images.cnblogs.com/cnblogs_com/cloudgamer/143727/r_song1.jpg" alt="" />          <img src="http://images.cnblogs.com/cnblogs_com/cloudgamer/143727/r_song2.jpg" alt="" />          <img src="http://images.cnblogs.com/cnblogs_com/cloudgamer/143727/r_song3.jpg" alt="" />          <img src="http://images.cnblogs.com/cnblogs_com/cloudgamer/143727/r_song4.jpg" alt="" />          <img src="http://images.cnblogs.com/cnblogs_com/cloudgamer/143727/r_song5.jpg" alt="" />      </div>

CSS樣式

#container{width:459px; height:200px; backgroundcolor:Black;position:relative;overflow:hidden;  #container img{position:absolute;width:360px;height:300px;display:block;top:0;width:280px;height:200px;}

JS:picSlider類

var picSlider = new Class(  {   Implements: Options, options:   {   container: "container", imgsWidth: 0.6,   },   initialize: function (options)   {   this.setOptions(options);   this.container = $(this.options.container); this.triggers = this.container.getElementsByTagName  ("img");   this.containerWidth = this.container.getSize().x;   //get container's width this.imgWidth = this.containerWidth * this.options.imgsWidth; this.aveWidth = this.containerWidth   / this.triggers.length; this.newAveWidth = (this.containerWidth - this.imgWidth)   / (this.triggers.length - 1); this.setImgsInit();   //初始化圖片展示 this.start(); },   setImgsInit:function(){   for(var i=0;i<this.triggers.length;i++)  {   this.triggers[i].setStyle("left",i*this.aveWidth);   } },   start:function(){   for(var i=0;i<this.triggers.length;i++){   this.triggers[i].set("tween",{property:"left",duration:300, fps:80});   //為每個元素設置動畫參數   this.triggers[i].addEvent("mouseover",this.slider.bindWithEvent(this,[i]));  //綁定slider函數 }   },   slider:function(e,at){   e.stop();   for(var i=1;i<this.triggers.length;i++){   if(i<=at){   this.triggers[i].get("tween").start(i*this.newAveWidth);   }else{   this.triggers[i].get("tween").start(this.imgWidth+(i-1)*this.newAveWidth);   } } }});  new picSlider();

如果想直接在本地運行,請引入

<script type="text/javascript"src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.1/mootools-yui-compressed.js"></script><script type="text/javascript" src="home.js"></script>

以上就是使用mootools1.3框架怎么實現一個圖片滑動效果,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桃江县| 泸溪县| 台东市| 获嘉县| 新乡市| 晋州市| 淳安县| 武威市| 阜宁县| 竹溪县| 昭通市| 安新县| 镇平县| 大悟县| 洛川县| 喀什市| 柯坪县| 留坝县| 大埔县| 恩平市| 遂平县| 吉安市| 南昌市| 苏尼特右旗| 广宗县| 北京市| 岑溪市| 浦江县| 博客| 西畴县| 化州市| 长葛市| 同江市| 六盘水市| 泰顺县| 平定县| 民权县| 通河县| 纳雍县| 藁城市| 宁安市|