Move link image 5px up on hover

后端 未结 5 669
孤城傲影
孤城傲影 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 08:05

    Also see translate():

    http://www.w3schools.com/css/css3_2dtransforms.asp

    img:hover {
        -moz-transform: translate(-2px, -2px);
        -ms-transform: translate(-2px, -2px);
        -o-transform: translate(-2px, -2px);
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }
    

    See a similar working example:
    http://jsfiddle.net/rimian/7aPvS/1/

提交回复
热议问题