今さら聞けないHTML 2019年12月16日

今さら聞けないHTML 2019年12月16日

cssうんちに魂宿してみた

# ?おさらい?
前回cssでうんちを書いたぞ!
[cssだけでうんち書いてみた](https://qiita.com/petapetapeta/items/b8b8675ef6880bed65a3)
今日はこれをよりうんちらしくするべく、魂を宿してみたい!

# ?cssでぷる〜んていうアニメーション?
キーフレームを頑張って打て、scale()を変えればできる!

“`css
@keyframes jelly {
0% {
transform: scale(1, 1);
}
8% {
transform: scale(1, 1);
}
10% {
transform: scale(1.1, 0.9);
}
13% {
transform: scale(0.9, 1.1);
}
17.5% {
transform: scale(1, 1);
}
19% {
transform: scale(1, 1);
}
58% {
transform: scale(1, 1);
}

元記事を表示

内容に応じてサイズが可変する