-
Notifications
You must be signed in to change notification settings - Fork 1
/
commpany.html
69 lines (64 loc) · 2.21 KB
/
commpany.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/css/amazeui.css">
<link rel="stylesheet" href="css/commpany.css">
<title>云谷驴图</title>
</head>
<body>
<div class="am-g body-head">
<div class="am-g company-name">
<div class="name">
<img src="img/农牧云3.png" alt="">
<span>云谷驴图</span>
</div>
</div>
<!-- <img src="img/company1.jpg" alt=""> -->
<div class="banner">
<div class="slider">
<div class="prev">
<img id="prev" src="img/prev.png" alt="">
</div>
<div class="content">
<div class="swiper">
<ul>
<li id="swiper-0">
<a href="">构建智慧型互联网农牧业生态圈</a>
</li>
<li id="swiper-1">
<a href="">打造绿色、共享、众筹、扶贫结合一体的互联网农牧业电商服务平台</a>
</li>
<li id="swiper-2">
<a href="">构建智慧型互联网农牧业生态圈</a>
</li>
</ul>
</div>
</div>
<div class="right">
<img id="right" src="img/next.png" alt="">
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/commpany.js"></script>
<script>
var count = $(".swiper li").length;
var i = 1;
$(() => {
console.log(count);
move();
});
function move() {
var moveWidth = $(".swiper li").innerWidth();
$(".swiper ul").stop().animate({
"left": -moveWidth * i,
}, 800);
console.log(moveWidth)
};
</script>
</body>
</html>