이미지 바운드
이미지 바운드
index.html
<div class = "ball-wrapper">
<div class="ball"><img src = "images/image.jpg"></div>
</div>
style.css
img {
margin-left: 10%;
border-radius: 50%; /*角丸半径を50%にする(=円形にする)*/
width: 250px; /* ※縦横を同値に */
height: 250px; /* ※縦横を同値に */
position: absolute;
-webkit-animation: jump 1s infinite;
-moz-animation: jump 1s infinite;
animation: jump 5s infinite; /* ※落下時間 */
}
/**
* animation
*/
@-webkit-keyframes jump {
0% {
top: 510px;
-webkit-animation-timing-function: ease-in;
}
40% {}
50% {
top: 600px;
/*height: 120px;*/
background-color: yellow;
-webkit-animtion-timing-function: ease-out;
}
100% {
top: 510px;
-webkit-animation-timing-function: ease-in;
}
}
@-moz-keyframes jump {
0% {
top: 0;
-moz-animation-timing-function: ease-in;
}
40% {}
50% {
top: 35px;
height: 120px;
-moz-animtion-timing-function: ease-out;
}
100% {
top: 0;
-moz-animation-timing-function: ease-in;
}
}
참조:http://tmlife.net/web/css3/css3-3d-ball-bound.html
Reference
이 문제에 관하여(이미지 바운드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/rainbow___0/items/f14f2a10acdd99206cbf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)