トップページ > コンテンツ > コンピュータ関連その他 > CSS編 > CSSだけで動きをつける > CSSで画像変化

hoverした時に画像を大きくするもの。

<html> 
<head>
<style type="text/css">
   img {
      width:100px;
      height:100px;
   border-radius:50%;
}
img:hover {
	animation:circle 5s;
}
@keyframes circle {
	100%{width:300px;height:300px;}
}
</style>
</head>
<body>
<img src="sample.jpg">
</body>
</html>
最終更新:2013年08月11日 15:15