w3resource

CSS Properties: How to animate something moving from one place to another and have it stay there?

Go to Exercise page

Solution:

HTML Code:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>How to animate something moving from one place to another and have it stay there</title>
</head>
<body>
<p>Move your mouse over the grey box</p>
<div class="xyz">
<div class="grows">w3resource Tutorials</div>
<div class="growsandstays">w3resource Tutorials</div>
</div>
<style type="text/css">
.xyz {
border-top: 100px solid #ccc;
height: 300px;
font-family: Georgia, "Times New Roman", Times, serif;
color: #89CC00;
}
@keyframes grow {
0% { font-size: 0 }
100% { font-size: 40px }
}
@-webkit-keyframes grow {
0% { font-size: 0 }
100% { font-size: 40px }
}
.xyz:hover .grows {
animation-name: grow;
animation-duration: 5s;
-webkit-animation-name: grow;
-webkit-animation-duration: 5s;
}
.xyz:hover .growsandstays {
animation-name: grow;
animation-duration: 5s;
animation-fill-mode: forwards;
-webkit-animation-name: grow;
-webkit-animation-duration: 5s;
-webkit-animation-fill-mode: forwards;
}
</style>
</body>
</html>

Live Demo:

See the Pen animation-fill-mode-answer by w3resource (@w3resource) on CodePen.


See the solution in the browser

Supported browser

Firefox logo Chrome logo Opera logo Safari logo Internet Explorer logo
Yes Yes Yes Yes No

Go to Exercise page

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

HTML-CSS: Tips of the Day

CSS strikethrough different color from text?

Yes, by adding an extra wrapping element. Assign the desired line-through color to an outer element, then the desired text color to the inner element. For example:

<span style='color:red;text-decoration:line-through'>
  <span style='color:black'>black with red strikethrough</span>
</span>

...or...

<strike style='color:red'>
  <span style='color:black'>black with red strikethrough<span>
</strike>

(Note, however, that <strike> is considered deprecated in HTML4 and obsolete in HTML5. The recommended approach is to use <del> if a true meaning of deletion is intended, or otherwise to use an <s> element or style with text-decoration CSS as in the first example here.)