"cloud moving sun"
Bootstrap 4.1.1 Snippet by ALIMUL AL RAZY

1
2
3
4
5
6
7
8
9
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="box">
<div class="sun"></div>
<div class="cloud"></div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body{
margin: 0;
padding: 0;
}
.box{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-size: cover;
background-color: #000;
background-image: linear-gradient(180deg, #000 6%, #000 32%, #000 53%, #f5f5f5 66%, #ccc 93%);
}
.sun{
position: absolute;
width: 50px;
height: 50px;
left: 45%;
top: 25%;
background: #f9f499;
opacity: 0.8;
border-radius: 50%;
border: 4px solid #fbf7b2;
}
.cloud{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(https://i.postimg.cc/VNHjr6jr/clouds.png);
animation: animate-clouds 90s linear infinite;
}
@keyframes animate-clouds{
0%{
background-position: 0px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: