Animation - moving from bottom

Developer
Size
1,856 Kb
Views
40,480

How do I make an animation - moving from bottom?

Just showing that a box moving from bottom with time delay.Reference: https://coderwall.com/p/nuzcua. What is a animation - moving from bottom? How do you make a animation - moving from bottom? This script and codes were developed by Tingyu on 13 September 2022, Tuesday.

Animation - moving from bottom Previews

Animation - moving from bottom - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Animation - moving from bottom</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="animated-box"> Testing box </div> <script src="js/index.js"></script>
</body>
</html>

Animation - moving from bottom - Script Codes CSS Codes

.animated-box{ height: 150px; width: 150px; position: fixed; bottom: -85px; background: #0bc56c; border: 1px solid black; -moz-animation: moving 2.0s;	-webkit-animation: moving 2.0s;	animation: moving 2.0s;
}
@-webkit-keyframes moving{ from{ -moz-transform: translateY(0px);	-webkit-transform: translateY(0px); transform: translateY(0px); opacity: 0;	}	to{ -moz-transform: translateY(-85px);	-webkit-transform: translateY(-85px); transform: translateY(-85px); opacity: 1;	}
}
.animated-box.moving-box { -webkit-animation-name: moving; -moz-animation-name: moving; animation-name: moving; bottom: 0;
}

Animation - moving from bottom - Script Codes JS Codes

setTimeout(function () { $('.animated-box').show().addClass('moving-box')}, 5000
);
Animation - moving from bottom - Script Codes
Animation - moving from bottom - Script Codes
Home Page Home
Developer Tingyu
Username TingChe
Uploaded September 13, 2022
Rating 3
Size 1,856 Kb
Views 40,480
Do you need developer help for Animation - moving from bottom?

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!

Tingyu (TingChe) Script Codes
Create amazing video scripts 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!