<!DOCTYPE html>
<style>
@keyframes test {
0% { transform: scale(2); }
100% { transform: scale(5); }
}
.animate {
animation-name: test;
animation-duration: 1s;
width: 10px;
height: 10px;
background: green;
}
</style>
<div id="target" class="animate">TARGET</div>