Move link image 5px up on hover

后端 未结 5 659
孤城傲影
孤城傲影 2021-02-05 07:45

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

5条回答
  •  野的像风
    2021-02-05 07:47

    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; }

提交回复
热议问题