1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <style> .container { position: absolute; top: 130px; left: 177px; z-index: 5; } .ani_margin_top { margin-top: -60px; } .ani_margin { padding-top: 60px; } .transition_ani1 { -webkit-transition: all 2.1s ease; -moz-transition: all 2.1s ease; -o-transition: all 2.1s ease; transition: all 2.1s ease; animation-timing-function: cubic-bezier(0,0,0.2,1); -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); } </style>
<div class="container transition_ani1 ani_margin ani_motion_2 ani_margin_top"> <img src="assets/img/image.png"> </div>
|