JavaScript animation with requestAnimationFrame

Size
1,868 Kb
Views
56,672

How do I make an javascript animation with requestanimationframe?

What is a javascript animation with requestanimationframe? How do you make a javascript animation with requestanimationframe? This script and codes were developed by Mattia A Fritz on 26 August 2022, Friday.

JavaScript animation with requestAnimationFrame Previews

JavaScript animation with requestAnimationFrame - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>JavaScript animation with requestAnimationFrame</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <h1>JavaScript animation with requestAnimationFrame()</h1>
<p> <label>Choose the distance covered in every frame:</label> <select id="distance"> <option value="1">1px</option> <option value="5" selected>5px</option> <option value="10">10px</option> <option value="25">25px</option> <option value="50">50px</option> </select>
</p>
<div id="box"></div> <script src="js/index.js"></script>
</body>
</html>

JavaScript animation with requestAnimationFrame - Script Codes CSS Codes

#box { width: 50px; height: 50px; border: 1px solid #000; background-color: darkorange;
}

JavaScript animation with requestAnimationFrame - Script Codes JS Codes

var box = document.querySelector("#box");
var distance = document.querySelector("#distance");
var margin = 0;
function animate() { margin = (margin > window.innerWidth ? 0 : margin + Number(distance.value)); box.style.marginLeft = margin + "px"; requestAnimationFrame(animate);
}
requestAnimationFrame(animate);
JavaScript animation with requestAnimationFrame - Script Codes
JavaScript animation with requestAnimationFrame - Script Codes
Home Page Home
Developer Mattia A Fritz
Username mafritz
Uploaded August 26, 2022
Rating 3
Size 1,868 Kb
Views 56,672
Do you need developer help for JavaScript animation with requestAnimationFrame?

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!

Mattia A Fritz (mafritz) Script Codes
Create amazing Facebook ads 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!