| 本帖最后由 79162409 于 2023-4-5 09:28 编辑 
 
这是我在图片元素里自定义的空调现在点开空调的页面是图片2这样的 有什么方法可以点开后是图片3卡片  - type: state-icon
    entity: climate.ke_ting_kong_diao
    tap_action:
      action: more-info
    hold_action: none
    icon: mdi:air-conditioner
    state_color: true
    style:
      top: 60%
      left: 125%
      width: 100%
 这样的吗
 
 
 贴一下解决方案 需要自己安装lovelace-thermostat-card 这个卡片和browser-mod 插件
 
 
  - type: state-icon
    entity: climate.ke_ting_kong_diao
    tap_action:
      action: call-service
      service: browser_mod.popup
      service_data:
        content:
          type: entities
          entities:
            - type: custom:thermostat-card
              entity: climate.ke_ting_kong_diao
              title: 客厅空调
              step: 0.5
              chevron_size: 100
    icon: mdi:air-conditioner
    state_color: true
    style:
      top: 60%
      left: 125%
      width: 100%
 
 
 |