【CSS】两种图片样式

2021-03-06 09:31

阅读:425

标签:radius   over   ima   duration   hover   nim   ddd   style   两种   

旋转圆形图片:

.pic:hover{
    transform: rotate(360deg);
    transition: all 1.5s ease ;
}
.pic{
    border-radius: 500px;
    border: solid #dddfdc;
}

鼠标放置完全显示:

.ganying:hover{
        animation: ganying 0.2s forwards ease;
        animation-duration: 0.2s;
        animation-delay: 0s;
}
.ganying{
        opacity: 0.9;
}
@keyframes ganying{
        from{}
        to{opacity: 1;}
}

【CSS】两种图片样式

标签:radius   over   ima   duration   hover   nim   ddd   style   两种   

原文地址:https://www.cnblogs.com/coder106/p/12897329.html


评论


亲,登录后才可以留言!