I have written a code and I'm trying to shrink/grow images when page is opened. I want to do this automatically(maybe simple jQuery animation).
But I can make it work on mouse hover. I want it when page is opened.
My code: http://jsfiddle.net/THfCe/
Code:
<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>