- Hello, Visitor
- Monday, September 15, 2025
Search Result
Home » Html Css
» Moving Car Animation With Html & Css
Moving Car Animation With Html & Css
Posted by NzCoding - 16 January 2022

Video Tutorial:
Html Code:
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><link rel="icon" type="image/x-icon" href="assets/images/favicon.png"><title>NzCoding - Animated Car With Html & Css</title><link rel="stylesheet" href="assets/css/style.css" /></head><body><div class="bg"><img src="assets/images/car2.png" alt="" class="car"></div></body></html>
Css Code:
body {padding: 0;margin: 0;overflow-y: hidden;}.bg {position: relative;background: #00fdff url(../images/background.jpg);height: 100vh;background-size: cover;background-position: 0 0;background-repeat: repeat-x;animation: animate 15s linear infinite;}.car {position: absolute;bottom: -70px;left: 15%;}@keyframes animate {from {background-position: 0 0;}to {background-position: 100% 0;}}
Hope it will help you.
Related posts
3D Animated Text With Html Css
18 January 2022
2405 Views
Html Loading Spinner with Color Changing Effects
15 January 2022
2173 Views
Loading Spinner with Html & Css
06 January 2022
1881 Views
Responsive card hover effect using CSS
21 December 2021
2004 Views
Transparent Login Form HTML CSS & JavaScript
20 December 2021
2648 Views
Popular Posts
Featured Post
Categories
- Html Css 7
- More 3
- Card Design 2
- Spinner 2
- GitHub 2
- Laravel 16
- Livewire 12
- Javascript 1
- Form Design 1
- SEO 1
- Php 0
Leave a Reply