-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner4.html
149 lines (130 loc) · 2.96 KB
/
banner4.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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Swiper demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<!-- Link Swiper's CSS -->
<link rel="stylesheet" href="css/swiper.min.css">
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<!-- Demo styles -->
<style>
html,
body {
position: relative;
height: 100%;
}
body {
background: #eee;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color: #000;
margin: 0;
padding: 0;
}
.swiper-container {
width: 100%;
height: 100%;
margin-left: auto;
margin-right: auto;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
height: calc((100% - 30px) / 2);
/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
position: relative;
}
.swiper-slide img {
width: 100%;
height: 50vh;
object-fit: cover;
}
.title {
position: absolute;
z-index: 10;
}
.title1 {
position: absolute;
z-index: 10;
}
.title h3 {
font-weight: 700;
font-size: calc(20px + 54 * ((53vw + 53vh) - 520px) / 820);
letter-spacing: -1px;
color: rgba(255, 255, 255, 0);
-webkit-text-stroke: 2px #fff;
}
.title1 h3 {
font-weight: 700;
font-size: calc(20px + 54 * ((53vw + 53vh) - 520px) / 820);
letter-spacing: -1px;
color: #fff;
}
</style>
</head>
<body>
<!-- Swiper -->
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="title">
<h3>FRENCH FRIES</h3>
</div><img src="images/img24.jpg">
</div>
<div class="swiper-slide">
<div class="title1">
<h3>FRENCH FRIES</h3>
</div>
<img src="images/img23.jpg">
</div>
<div class="swiper-slide">
<div class="title1">
<h3>FRENCH FRIES</h3>
</div><img src="images/img22.jpg">
</div>
<div class="swiper-slide">
<div class="title">
<h3>FRENCH FRIES</h3>
</div><img src="images/img21.jpg">
</div>
<div class="swiper-slide">
<div class="title">
<h3>FRENCH FRIES</h3>
</div><img src="images/img20.jpg">
</div>
<div class="swiper-slide">
<div class="title">
<h3>FRENCH FRIES</h3>
</div><img src="images/img19.jpg">
</div>
</div>
</div>
<!-- Swiper JS -->
<script src="js/swiper.min.js"></script>
<script src="js/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper('.swiper-container', {
autoplay: { delay: 10000, },
parallax: true, //文字位移视差
slidesPerView: 2,
slidesPerColumn: 2,
spaceBetween: 0//30,
});
</script>
</body>
</html>