<table class="html5">
<tr class="li1"><td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136 > > > >无标题文档> ><> --> > $(function(){ var ali=$("#slideBox #slide li"); //console.log(ali); var alis=$("#slideBox #slide li").length;//size()ali的长度 var oa=$("#slideBox #arrow a"); //console.log(oa); var inow=0; var timer=null; oa.each(function(index) { $(this).mouSEOver(function(){ // alert(index) sliderun(index) }) }); function sliderun(index){ inow=index//与index保持同步 oa.removeClass("active"); oa.eq(index).addClass("active"); ali.eq(index).siblings() .stop() .animate({opacity:0},1000) .find("div") .stop().animate({top:60,opacity:0}); ali.eq(index) .stop() .animate({ opacity:1},1000) .find("div") .stop() .animate({top:0,opacity:1});} function auto(){ timer=setInterval(function(){ inow++; if(inow>=alis){ inow=0;} sliderun(inow); },2000) } auto(); $("#slideBox").hover(function(){ clearInterval(timer) },function(){ auto(); })//运行函数 })//左右点击 > > *{ margin:0; padding:0;} ul li{ list-style:none;} #slideBox #slide li{ width:100%; height:350px; position:absolute; left:0; top:0; opacity:0; filter:Alpha(Opacity=100); cursor:pointer; } #slideBox #slide-nav{ width:120px; height:20px; position:absolute; top:320px; left:50%; margin-left:-60px; z-index:1000; } #slideBox #slide-nav #arrow a{ width:15px; height:15px; background:#EEE; float:left; margin-left:3px; border-radius:50%; } #slideBox #slide-nav #arrow a.active{ background:#A00;} > > > Box"> > > > > > ><> ><> ><> ><> > > > ><> ><> ><> ><> ><> > > > > > JQ轮播图(opcity)
相关文章
这个问题和curl无法访问https资源是类似的,现在curl可以访问https资源,但是使用pecl安装扩展的时候不行...
在浏览器输入chrome://flags/回车,找到Omnibox UI Hide Steady-State URL Scheme and Trivial Subdoma...
方法一: 我们都知道Ubuntu有一个专门用来安装软件的工具apt,我们可以用它来全自动安装arm-linux-gcc。...
中文的windows下的cmd默认使用GBK的编码,敲代码时,页面使用的是UTF-8(65001),而powershell控制台默认...
提示错误: arm-linux-gcc:Command not found PATH里有/usr/oca/arm/bin,但是make的时候,就是找不到 a...
我在Graph API开发中用的最多的测试工具就是Graph Explore,这个是微软开发的网页版的Graph API的测试工...