无论你想走多远,你都需要不断地走下去。前端最精华的便是原生的js,这也是我们前端工程师的技术分层的重要指标,也提现这你的代码能力,开发的水平。废话不多说,进入今天的主要分享————基于面向对象思想的图片轮播。其效果如下所示:

正如图片所示这样我们要实现的效果,这里与我们以往不同的是我们的布局十分简洁。其中html布局如下:

  1. 1 <!DOCTYPE html>
  2. 2 <html lang="en">
  3. 3 <head>
  4. 4 <meta charset="UTF-8">
  5. 5 <title>Document</title>
  6. 6 <link rel="stylesheet" href="index.css">
  7. 7 <script src="tools.js"></script>
  8. 8 <script src="js.js"></script>
  9. 9 </head>
  10. 10 <body>
  11. 11 <div class="container" id="slide1">
  12. 12 <ul>
  13. 13 <li><a href=""><img src="images/1.jpg" alt="文字1"></a></li>
  14. 14 <li><a href=""><img src="images/2.jpg" alt="文字2"></a></li>
  15. 15 <li><a href=""><img src="images/3.jpg" alt="文字3"></a></li>
  16. 16 <li><a href=""><img src="images/4.jpg" alt="文字4"></a></li>
  17. 17 </ul>
  18. 18 </div>
  19. 19 <script>
  20. 20 var s = new Slider("slide1");
  21. 21 console.info(s);
  22. 22 </script>
  23. 23 </body>
  24. 24 </html>

样式文件index.css

  1. 1 ul,ol,li{padding:0;margin:0;list-style: none;}
  2. 2 .container{
  3. 3 width: 500px;
  4. 4 height: 300px;
  5. 5 margin:50px auto;
  6. 6 position: relative;
  7. 7 }
  8. 8 #msg{
  9. 9 width:100%;
  10. 10 height:40px;
  11. 11 line-height: 40px;
  12. 12 text-indent:10px;
  13. 13 position:absolute;
  14. 14 bottom:0px;
  15. 15 left:0;
  16. 16 color:white;
  17. 17 font-size: 16px;
  18. 18 background:rgba(0,0,0,.8);
  19. 19 cursor:pointer;
  20. 20 z-index:1;
  21. 21 }
  22. 22 ul li a{display: block;}
  23. 23 img{width: 500px;height: 300px;}
  24. 24 ol{position: absolute;bottom:10px; left:50%; -webkit-transform:translateX(-50%); background:rgba(255,255,255,.6);border-radius:7px;padding:3px;z-index:2;}
  25. 25 ol li{background: red; float:left; width:8px; height:8px;margin-left:5px; -webkit-border-radius:4px;-mz-border-radius:4px;margin-right: 7px}
  26. 26 span{
  27. 27 width:30px;
  28. 28 height:45px;
  29. 29 line-height: 45px;
  30. 30 font-size:40px;
  31. 31 color:white;
  32. 32 background:rgba(255,255,255,.3);
  33. 33 cursor:pointer;
  34. 34 position:absolute;
  35. 35 font-weight: bold;
  36. 36 top:50%;
  37. 37 left:0;
  38. 38 -webkit-transform:translateY(-50%);
  39. 39 -mz-transform:translateY(-50%);
  40. 40 -webkit-transition:all 1s ease 0s;
  41. 41 }
  42. 42 #rtBtn{
  43. 43 right:0;
  44. 44 left:auto;
  45. 45 }
  46. 46 span:hover{
  47. 47 -webkit-transform:rotateY(40deg) translateX(-30px) scale(1.2);
  48. 48 }

注意这里的浏览器兼容,我这里只兼容了内核为-webkit-的;同时注意这里的ol和div的样式设计。

js.js代码:

  1. 1 function Slider(containerId){
  2. 2 this.containerId = $(containerId);
  3. 3 this.ullis =$get($get(containerId,"ul")[0],"li");
  4. 4 this.num = this.ullis.length;
  5. 5 this.ollis =this.createList();
  6. 6 this.indexA = 1;
  7. 7 this.timer;
  8. 8 this.init(this.indexA);
  9. 9 this.ltBtn = $("ltBtn");
  10. 10 this.rtBtn = $("rtBtn");
  11. 11 this.mouseenter();
  12. 12 this.autoplay(this.indexA);
  13. 13 console.info(this.ollis);
  14. 14 }
  15. 15 Slider.prototype.createList =function(){//创建ol
  16. 16 var ol = $create("ol");
  17. 17 var lis = [];
  18. 18 for(var i = 0; i<this.num;i++){
  19. 19 var li = $create("li");
  20. 20 ol.appendChild(li);
  21. 21 lis.push(li);
  22. 22 }
  23. 23 this.containerId.appendChild(ol);
  24. 24 var spanleft = $create("span")
  25. 25 spanleft.innerHTML="&lt;"
  26. 26 spanleft.id="ltBtn";
  27. 27 this.containerId.appendChild(spanleft);
  28. 28 var spanright =$create("span");
  29. 29 spanright.innerHTML = "&gt;"
  30. 30 spanright.id = "rtBtn";
  31. 31 this.containerId.appendChild(spanright);
  32. 32 var div = $create("div")
  33. 33 div.id= "msg";
  34. 34 this.containerId.appendChild(div);
  35. 35 return lis;
  36. 36 }
  37. 37 Slider.prototype.init =function(index){
  38. 38 this.moveto(index);
  39. 39 }
  40. 40 Slider.prototype.mouseenter =function(){
  41. 41 var that = this;
  42. 42 for (var i = 0; i < this.num; i++) {
  43. 43 this.ollis[i].index = i;
  44. 44 this.ollis[i].onmouseenter = function(){
  45. 45 that.moveto(this.index);
  46. 46 }
  47. 47 }
  48. 48 this.ltBtn.onclick = function(){
  49. 49 if(that.indexA>0){
  50. 50 that.indexA--;
  51. 51 that.moveto(that.indexA);
  52. 52 }else{
  53. 53 that.indexA=that.num-1;
  54. 54 that.moveto(that.indexA);
  55. 55 }
  56. 56 }
  57. 57 this.rtBtn.onclick = function(){
  58. 58 if(that.indexA<that.num-1){
  59. 59 that.indexA++;
  60. 60 that.moveto(that.indexA);
  61. 61 }else{
  62. 62 that.indexA = 0;
  63. 63 that.moveto(that.indexA);
  64. 64 }
  65. 65 }
  66. 66 }
  67. 67 Slider.prototype.moveto =function(index){
  68. 68 for (var i = 0; i < this.num; i++) {
  69. 69 this.ullis[i].style.display="none";
  70. 70 this.ollis[i].style.backgroundColor="red";
  71. 71 }
  72. 72 this.ullis[index].style.display="block";
  73. 73 this.ollis[index].style.backgroundColor="blue";
  74. 74 $("msg").innerHTML = this.ullis[index].firstChild.firstChild.alt;
  75. 75 }
  76. 76 Slider.prototype.autoplay= function(indexA){
  77. 77 var that =this;
  78. 78
  79. 79 that.timer = setInterval(function(){
  80. 80 indexA%=that.num;
  81. 81 that.moveto(indexA);
  82. 82 indexA++;
  83. 83 },3000);
  84. 84 that.containerId.onmouseenter =function(){
  85. 85 clearInterval(that.timer);
  86. 86 console.info(that.containerId);
  87. 87 }
  88. 88 that.containerId.onmouseleave = function(){
  89. 89 that.autoplay(indexA)
  90. 90 }
  91. 91
  92. 92 }

 简单讲一下:此次开发的大致思想,首先我们在html中首先生成一个对象构造器——即Slider,这样的好处是,我们以后可以很方便地通过我们的构造器来实现一个图片轮播的效果,减少代码冗余,同时减少了变量命名的冲突;当然它也有弊端,对于小型项目不是很好,所以在开发工程需要考虑。

此次开发中,我们需要首先实现:html架构和简单的样式操作,这里我们只需要下次添加我们需要的图片轮播的图片资源和整个容器div就可以了,减少了对应的轮播导航下标的编写,提现了代码的简单性,更适合小白类开发的编写。

这里遇到的问题有:

1.如何创建一个元素,如何给创建的元素添加到需要的父亲结点上

2.如何给生成的标签添加类名,以及属性

解决办法

1.利用 var li =document.creatElement(“li”)来创建新的属性标签,即dom操作。

创建dom元素(createElement()创建元素,createTextNode()创建文本结点)并且添加 appendChild()示例如下: 

  1. <div id="div1">
  2. <p id="p1">This is a paragraph.</p>
  3. <p id="p2">This is another paragraph.</p>
  4. </div>
  5.  
  6. <script>
  7. var para=document.createElement("p");
  8. var node=document.createTextNode("This is new.");
  9. para.appendChild(node);
  10. var element=document.getElementById("div1");
  11. element.appendChild(para);
  12. </script>

2.属性的操作和修改:

这里对于创建的元素的类名和id进行演示

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <header>
  4. <meta charset ="utf-8">
  5. <style>
  6. .cur{
  7. color:red;
  8. }
  9. </style>
  10. <title>创建元素</title>
  11. </header>
  12. <body>
  13. <ul id="content">
  14. </ul>
  15. <script>
  16. var li = document.createElement("li");
  17. li.classList.value = "cur";
  18. li.innerHTML = "今天我学习面向对象开发思想";
  19. document.getElementById("content").appendChild(li);
  20. </script>
  21. </body>
  22. </html>

效果图:

 

 前端开发中的样式设计:一般思路首先对于大型网站的开发,我们需要统一设计初始化样式,一般文件名是:base.css,其中是我们对于所有浏览器统一使用的一个文件类型,其中设计代码如下:

  1. 1 @charset "utf-8";
  2. 2
  3. 3 /* CSS reset */
  4. 4 body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
  5. 5 table{border-collapse:collapse;border-spacing:0;}
  6. 6 fieldset,img {border:0;}
  7. 7 img{vertical-align: top;}
  8. 8 address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
  9. 9 ol,ul {list-style:none;}
  10. 10 capation,th{text-align:left;}
  11. 11 h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
  12. 12 q:before, q:after{content:\'\';}
  13. 13 abbr,acronym{border:0;}
  14. 14
  15. 15 .tl{text-align:left;}
  16. 16 .tc{text-align:center;}
  17. 17 .tr{text-align:right;}
  18. 18 .bc{margin-left:auto;margin-right:auto;} /*块状元素集中对齐 block center*/
  19. 19 .fl{float:left;display:inline;} /* 可修复IE6中双倍边距bug */
  20. 20 .fr{float:right;display:inline;}
  21. 21 .cb{clear:both;}
  22. 22 .overflow-h{overflow:hidden;}
  23. 23
  24. 24 .clearfix:after{
  25. 25 content:\'\';
  26. 26 display:block;
  27. 27 height:0;
  28. 28 visibility: hidden;
  29. 29 clear:both;
  30. 30 }
  31. 31 .clearfix{ /*IE6中的解决方案*/
  32. 32 zoom:1;
  33. 33 }

注意这里我添加了一个新的类,通过伪对象的方法来解决浮动造成的塌陷问题,常用的解决浮动塌陷的方法是

1.给使用float元素的父类结束前添加一个高为0,宽为0并且有clear:both样式的div;

2.在使用float元素的父类元素添加overflow:hidden

3.使用after伪对象清除浮动,如上面的代码显示。

在项目开发中样式设计过程中,我们不会去修改其他工程师已经编写的样式,而是在他们的基础上,我们添加新的样式,来覆盖他们的样式;这样的好处,可以避免修改样式而毁坏原来的样式,而影响到项目的开发。我们常用的开发的插件,如在手机端开发常用的图片轮播插件的样式设计,我们也是在后面修改的。

一般我们会把通用的一些样式写在一个新的css文件中,提供给大家使用,把一些对应的的样式写在index.css文件中。注意这里使用了css3中新增的属性:transfrom,border-radius,rotate(),rgba()来实现背景色变化,在IE浏览器中不兼容,需要写成background:rgb(255,255,255);filter(alpha(opacity=60));今天就大致说到这里吧。

js.js文件

注意这里不是光引用这个文件就可以了,而是在html中通过var s = new Slider(“id”);来调用我们编写的构造器。注意在编写程序的时候,不要一开始写完了js构造器所有的代码在去调用,因为这样不方便检查我们的编写是否出现了出现了错误,这里推荐下错误检查方法:一般都老鸟都会通过console.info()或者console.log()来答应我们的变量或者传递的参数,还以可以通过打印一个变量来检测我们的代码是否执行,是否有效,常见的错误类型有语法错误,引用类型错误,逻辑错误等,所以要注意错误类型并且及时修改。

工具文件,我们可以把我们常用的方法封装成一个函数,通过传递形参的形式来获得我们需要的元素和效果,如下面所示的tools.js

  1. function $(id){
  2. return document.getElementById(id);
  3. }
  4. function $get(containerId,tagName){
  5. if(typeof containerId =="string" && $(containerId)){
  6. return $(containerId).getElementsByTagName(tagName);
  7. }
  8. else if(typeof containerId=="object")
  9. {
  10. return containerId.getElementsByTagName(tagName);
  11. }
  12. else{
  13. throw ("你写的第一个参数不是一个ID");
  14. }
  15. }
  16. function $create(TagName,attr){
  17. var dom = document.createElement(TagName);
  18. for(var p in attr){
  19. dom[p] = attr[p];
  20. }
  21. return dom;
  22. }

 

最后我们分析一下构造器中需要的属性:

1.创建对应的ol导航和对应的按钮

2.初始化所有的样式操作

3.显示在对应的容器操作

4.鼠标进入事件

5.自动播放事件

在这些基本的事件中我们需要注意调用的顺序,如:创建肯定在初始化之前。我们可以把一些通用的属性放在原型链中来编写,这样的好处减少了变量空间占用和多次访问属性的效果。

遇到的问题:

1.其中的this指代问题:这里的解决办法是在鼠标进入之前的函数中缓存一下var that = this。 这样就可以访问属性了。

2.图片轮播判断:向左点击的时候, 如果当前的索引值大于零,让它执行自减操作,如果不大于0 就让他等于对应图片长度-1;

        向右点击的时候,当前的索引值小于它对应的轮播图片的长度-1,执行自加1操作,超过图片轮播长度时,索引值等于0,代码如下所示

  1. this.ltBtn.onclick = function(){
  2. if(that.indexA>0){
  3. that.indexA--;
  4. that.moveto(that.indexA);
  5. }else{
  6. that.indexA=that.num-1;
  7. that.moveto(that.indexA);
  8. }
  9. }
  10. this.rtBtn.onclick = function(){
  11. if(that.indexA<that.num-1){
  12. that.indexA++;
  13. that.moveto(that.indexA);
  14. }else{
  15. that.indexA = 0;
  16. that.moveto(that.indexA);
  17. }
  18. }

 

版权声明:本文为starryyang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/starryqian/p/6066870.html