サンプル
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<style> div { width: 100px; height: 100px; padding: 10px; margin: 30px; background-color: orange; border: 2px solid orangered; transition: background-color 2s linear 0, height 2s ease-in-out 0; } div:hover { height: 200px; background-color: red; } </style> |
1 |
<div id="test1">Test1</div> |
参考サイト
transition-CSS3リファレンス
http://www.htmq.com/css3/transition.shtml