侧边栏壁纸
博主头像
个人心得分享博主等级

生命不息,折腾不止

  • 累计撰写 20 篇文章
  • 累计创建 19 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

HA滚动输入一段话

kloar博主
2024-06-05 / 0 评论 / 0 点赞 / 6 阅读 / 897 字 / 正在检测是否收录...

type: custom:button-card #搭配button-card按钮卡片使用
entity: light.leshi_wy0b01_74d0_light #这个实体意义不大
show_name: false
show_icon: false
tap_action:
  action: none
custom_fields:
  imfor: |
    [[[ return ' 当前有'+ states['counter.kai_deng_shu_liang'].state + '个灯开着' ]]]
#代码中输出的实体为自行创建的一个计数器搭配自动化记录开灯的数量
styles:
  custom_fields:
    imfor:
      - font-size: 20px #字体大小
      - animation: slide 5s linear infinite #速度
extra_styles: |
  @keyframes slide { 0%{
   transform: translateX(100%);} #出现位置
  100% {
   transform: translateX(-350%);} #移动到位置
   }
style: |
  ha-card {
   background: none !important;
   box-shadow: none !important;
  }

需要在HACS中安装button-card按钮卡片,复制代码并修改自己的配置,替他参数可自行调整

0

评论区