CSS Animation Example

Developer
Size
1,641 Kb
Views
26,312

How do I make an css animation example?

Alernative to: http://2.bp.blogspot.com/-KfejkIZnzco/Tzr0zbxZ66I/AAAAAAAAACw/ULwVhnLo_7o/s1600/Color+Change+Square.gif. What is a css animation example? How do you make a css animation example? This script and codes were developed by Matt Shull on 28 September 2022, Wednesday.

CSS Animation Example Previews

CSS Animation Example - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS Animation Example</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div></div>
</body>
</html>

CSS Animation Example - Script Codes CSS Codes

div { height:100px; width:100px; position:relative; -webkit-animation: move 1.5s infinite; /* Chrome, Safari, Opera */ animation: move 1.5s infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes move { 0% { left:0px; top:0px; background-color:yellow; } 25% { left:500px; top:0px; background-color:red; } 50% { left:500px; top:500px; background-color:blue; } 75% { left:0px; top:500px; background-color:green; } 100% { left:0px; top:0px; background-color:yellow; }
}
/* Standard syntax */
@keyframes move { 0% { left:0px; top:0px; background-color:yellow; } 25% { left:500px; top:0px; background-color:red; } 50% { left:500px; top:500px; background-color:blue; } 75% { left:0px; top:500px; background-color:green; } 100% { left:0px; top:0px; background-color:yellow; }
}
CSS Animation Example - Script Codes
CSS Animation Example - Script Codes
Home Page Home
Developer Matt Shull
Username derekshull
Uploaded September 28, 2022
Rating 3
Size 1,641 Kb
Views 26,312
Do you need developer help for CSS Animation Example?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Matt Shull (derekshull) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!