floorplan.rar
(1.23 KB, 下载次数: 6)
最后的那段就是,我也是跟坛子里面大佬抄来的。
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
#fan\.luodishan {
transform-origin: center center;
}
#fan\.sonoff06 {
transform-origin: center center;
}
#fan\.sonoff08 {
transform-origin: center center;
}
#fan\.sonoff09 {
transform-origin: center center;
}
.fan-on{
fill: #c8c8c8 !important;
-webkit-animation: rotation 2s infinite linear;
transform-box: fill-box;
}
.fan-off{
fill: #646464 !important;
}
|