PokeVideoPlayer v23.9-app.js-020924_
0143ab93_videojs8_1563605_YT_2d24ba15 licensed under gpl3-or-later
Views : 80
Genre: People & Blogs
License: Standard YouTube License
Uploaded At Feb 12, 2024 ^^
warning: returnyoutubedislikes may not be accurate, this is just an estiment ehe :3
Rating : 5 (0/12 LTDR)
100.00% of the users lieked the video!!
0.00% of the users dislieked the video!!
User score: 100.00- Masterpiece Video
RYD date created : 2024-02-13T05:37:49.092207Z
See in json
Top Comments of this video!! :3
CSS :
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background:
url(learndesigntutorial.com/wp-content/uploads/2021/03β¦
no-repeat;
background-size: cover;
background-position: bottom;
background-color: rgba(0,0,0,0.7);
background-blend-mode: overlay;
height: 100vh;
overflow: hidden;
}
.wrap{
position: absolute;
height: 150px;
bottom: 100px;
left: 0;
width: 100%;
}
.image{
width: 150px;
position: absolute;
}
.truck-img{
bottom: 0;
left: -150px;
z-index: 2;
animation: truck 10s linear infinite;
}
@keyframes truck{
40%, 70%{
left: 60%;
}
100%{
left: 100%;
}
}
.box-img{
width: 35px;
z-index: 1;
top: 55%;
left: 60%;
opacity: 0;
animation: box 10s linear infinite;
}
.box-img2{
animation-delay: 1s;
}
@keyframes box{
0%, 40%{
opacity: 0;
left: 55%;
}
50%{
opacity: 1;
left: 60%;
}
60%, 100%{
opacity: 0;
left: 60%;
}
}
1 |
@Codecraft001
1 year ago
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS FILE
</title>
<link rel="stylesheet" href="css18.css">
</head>
<body>
<div class="wrap">
<img class="image truck-img"
src="learndesigntutorial.com/wp-content/uploads/2021/03β¦" alt="">
<img class="image box-img"
src="learndesigntutorial.com/wp-content/uploads/2021/03β¦" alt="">
<img class="image box-img box-img2"
src="learndesigntutorial.com/wp-content/uploads/2021/03β¦" alt="">
</div>
1 |