非大神,发一下风扇的代码
floorplan.yaml
- name: Fans
entities:
- fan.xiaomi_air_purifier_pro
states:
- state: 'on'
class: 'fan-on'
- state: 'off'
class: 'fan-off'
action:
service: toggle
CSS:
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
#fan\.xiaomi_air_purifier_pro {
transform-origin: center center;
}
.fan-on{
fill: #bdf271 !important;
-webkit-animation: rotation 2s infinite linear;
transform-box: fill-box;
}
.fan-off{
fill: #424242 !important;
}
翻译中...
|