-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslideshow.php
147 lines (132 loc) · 3.71 KB
/
slideshow.php
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body{
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
}
.css-slideshow{
position: absolute;
top:-67px;
max-width: 1280px;
margin: 130px 1000px 0px 0px;
}
.css-slideshow figure{
margin: 0;
max-width: 1280px;
height: 888px;
background: #000;
position: absolute;
}
.css-slideshow img{
box-shadow: 0 0 2px #666;
}
.css-slideshow figcaption{
position: absolute;
top: 0;
color: #fff;
background: rgba(0,0,0, .3);
font-size: .8em;
padding: 8px 12px;
opacity: 0;
transition: opacity .5s;
}
.css-slideshow:hover figure figcaption{
transition: opacity .005s;
opacity: 1;
}
.css-slideshow-attr{
max-width: 1280px;
text-align: right;
font-size: .7em;
font-style: italic;
margin:0 auto;
}
.css-slideshow-attr a{
color: #666;
}
.css-slideshow figure{
opacity:0;
}
figure:nth-child(1) {
animation: xfade 48s 42s infinite;
}
figure:nth-child(2) {
animation: xfade 48s 36s infinite;
}
figure:nth-child(3) {
animation: xfade 48s 30s infinite;
}
figure:nth-child(4) {
animation: xfade 48s 24s infinite;
}
figure:nth-child(5) {
animation: xfade 48s 18s infinite;
}
figure:nth-child(6) {
animation: xfade 48s 12s infinite;
}
figure:nth-child(7) {
animation: xfade 48s 6s infinite;
}
figure:nth-child(8) {
animation: xfade 48s 0s infinite;
}
@keyframes xfade{
0%{
opacity: 1;
}
10.5% {
opacity: 1;
}
12.5%{
opacity: 0;
}
98% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<div class="css-slideshow">
<figure>
<img src="pictures/one.jpeg" width="1440" height="768" class="alignnone size-full wp-image-172" />
<figcaption><strong>Artists Page</strong> </figcaption>
</figure>
<figure>
<img src="pictures/two.jpg" alt="artworks" width="1440" height="888" class="alignnone size-large wp-image-178" />
<figcaption><strong>Visit the Artworks page</strong> </figcaption>
</figure>
<figure>
<img src="pictures/three.jpg" alt="artists" width="1440" height="888" class="alignnone size-full wp-image-179" />
<figcaption><strong>Hello: ART+BAY USER!!!!</strong> </figcaption>
</figure>
<figure>
<img src="pictures/four.jpeg" alt="artguide" width="1440" height="888" class="alignnone size-full wp-image-177" />
<figcaption><strong>About Us Page Get to know the web developers and the works of ART+BAY.</strong> </figcaption>
</figure>
<figure>
<img src="pictures/fifth.jpg.webp" alt="artguide" alt="class-header-connectivity" width="1440" height="888" class="alignnone size-large wp-image-176" />
<figcaption><strong>Art Guide:</strong> Presents rich, device-aware features and instructions to orient everyone of this environment.</figcaption>
</figure>
<figure>
<img src="pictures/six.jpg" alt="artists" alt="class-header-multimedia" width="1440" height="888" class="alignnone size-large wp-image-175" />
<figcaption><strong>See More at the Artists Page</strong> </figcaption>
</figure>
<figure>
<img src="pictures/seven.jpg" alt="artworks" width="1440" height="888" class="alignnone size-large wp-image-174" />
<figcaption><strong>See More artworks at the Artworks Page</strong> </figcaption>
</figure>
<figure>
<img src="pictures/eigth.jpg" alt="class-header-performance" width="1440" height="888" class="alignnone size-large wp-image-173" />
<figcaption><strong>Home Page & </strong> </figcaption>
</figure>
</div>
</body>
</html>