How to animate an element on hover

后端 未结 3 1418
一个人的身影
一个人的身影 2021-01-02 09:00

How can I make my

elements grow (and the content changes text size to a higher one), when hovered over? I put them in a class and tried:

<         


        
3条回答
  •  温柔的废话
    2021-01-02 09:50

    CSS3 solution:

    div {
        background: #999;
        width: 200px;
        height: 20px; 
        transition: width 1s;
    }
    
    div:hover{
        width: 300px;
    }

    Im content

    http://jsfiddle.net/MrdvW/

提交回复
热议问题