【CSS】两种图片样式
2021-03-06 09:31
标签:radius over ima duration hover nim ddd style 两种 旋转圆形图片: 鼠标放置完全显示: 【CSS】两种图片样式 标签:radius over ima duration hover nim ddd style 两种 原文地址:https://www.cnblogs.com/coder106/p/12897329.html.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;}
}
上一篇:web-开发之路