-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbannerPractice.html
109 lines (82 loc) · 2.41 KB
/
bannerPractice.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>练习4</title>
<style>
* {
margin: 0;
padding: 0;
}
#con {
position: relative;
width: 50%;
height: 200px;
margin: 0 auto;
margin-top: 50px;
overflow: hidden;
}
ul {
position: absolute;
display: flex;
left: 0px;
width: 100%; /*不加100%会出现放大现象*/
height: 100%;
}
li {
list-style: none;
width: 18%;
height: 100%;
margin-left: 2%;
flex-shrink: 0; /*缩放设置为0 不缩放*/
}
img {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="con">
<ul id="ul">
<li><img src="../../../img/cat.jpg" alt=""></li>
<li><img src="../../../img/duo1.png" alt=""></li>
<li><img src="../../../img/duo2.png" alt=""></li>
<li><img src="../../../img/duo3.png" alt=""></li>
<li><img src="../../../img/duo4.png" alt=""></li>
</ul>
</div>
</body>
<script>
var ul = document.getElementById("ul");
/* console.log("ul1: " + window.getComputedStyle(ul).width);*/
var con = document.getElementById("con");
/* console.log("con:" + window.getComputedStyle(con).width);*/
ul.innerHTML = ul.innerHTML + ul.innerHTML;/*ul的宽度是没有变的,已经固定了,但是多出来的li已经溢出去了*/
console.log(window.getComputedStyle(ul).width);
/*只有使用getComputedStyle才能得到写在样式表中的属性*/
var left = getComputedStyle(ul).left;
/*拿出来的只是值,不是属性,所以不能进行设置*/
var width = parseInt(getComputedStyle(ul).width);/*是li溢出去了,但是ul宽度还是没有变*/
console.log(width);
var i = 0;
function move() {
if (i >= width) {
i = 0;
} else {
i++;
}
ul.style.left = -i + "px";
}
setInterval("move()", 20);
/*
/!*增加需求,鼠标移上去是停止,鼠标移开是继续滚动*!/
ul.onmouseover = function(){
clearInterval(setInterval("move()", 10));
}
ul.onmouseout = function(){
setInterval("move()", 10);
}
*/
</script>
</html>