How would I go about acheiving an effect similar to that on this site\'s portfolio page Solid Giant, with CSS and HTML?
I had thought that just putting something like t
You could also use CSS/HTML5 animations: http://slides.html5rocks.com/#css-animation
you could also wrap it in another parentdiv that has position:relative set:
.parent { position:relative; } .image { position:absolute; top:0px; left:0px; } .image:hover { top:-15px; }