我已经编写了一个代码,并且我正在尝试在打开页面时缩小/放大图像。我想自动执行此操作(可能是简单的 jQuery 动画)。
但我可以让它在鼠标悬停时工作。打开页面时我想要它。
我的代码:http: //jsfiddle.net/THfCe/
代码:
<style>
#photos img {
width: 100%;
height: 100%;
transition: width 2s, height 2s, transform 2s;
margin-left: -10px;
}
#photos img:hover {
width: 110%;
height:110%;
}
</style>
<div id="photos">
<img src="http://www.oprant.com/images/p_slide1.png" alt="Main" id="mainpicture" class="resize" />
</div>