-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_index_about.php
48 lines (46 loc) · 1.11 KB
/
page_index_about.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
<style type="text/css">
.caption{
width: 100%;
max-width: 100%;
position: absolute;
text-align: center;
top: 50%;
color: #fff9;
text-transform: uppercase;
}
body{
animation: animate 20s ease-in-out infinite;
background-size: cover;
}
@keyframes animate{
0%, 100%{
background-image: url('<?php echo base_url('assets/image/1.jpg') ?>');
}
50%{
background-image: url('<?php echo base_url('assets/image/3.jpg') ?>');
}
75%{
background-image: url('<?php echo base_url('assets/image/4.jpg') ?>');
}
100%{
background-image: url('<?php echo base_url('assets/image/6.jpg') ?>');
}
150%{
background-image: url('<?php echo base_url('assets/image/7.jpg') ?>');
}
200%{
background-image: url('<?php echo base_url('assets/image/8.jpg') ?>');
}
225%{
background-image: url('<?php echo base_url('assets/image/9.jpg') ?>');
}
250%{
background-image: url('<?php echo base_url('assets/image/10.jpg') ?>');
}
300%{
background-image: url('<?php echo base_url('assets/image/11.jpg') ?>');
}
}
</style>
</body>
</html>