15
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSS animationでスイカがかわいく揺れるやつについて調べてみました。

Last updated at Posted at 2015-07-01

以下のサイトの西瓜の揺れ方がよかったのでメモ。
http://iconmelon.com/ (もうサイト無くなってました。。
(1年半前ぐらいなぜか限定共有にいたので公開)

icemelon.gif


.swing {
        animation-name: swing;
        animation-duration: 2s;
        animation-delay: .45s;
}

@-webkit-keyframes swing {
	0%,100% { 
		-webkit-transform-origin: bottom center; 
	}
	10% { -webkit-transform: rotate(-15deg); }	
	20% { -webkit-transform: rotate(10deg); }
	30% { -webkit-transform: rotate(-5deg); }	
	40% { -webkit-transform: rotate(5deg); }	
	50% { -webkit-transform: rotate(-3deg); }
	
	60% { -webkit-transform: rotate(2deg); }
	70% { -webkit-transform: rotate(-2deg); }
	80% { -webkit-transform: rotate(1deg); }
	90% { -webkit-transform: rotate(-1deg); }
	100% { -webkit-transform: rotate(0deg); }
}

test

15
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?