Did you figure out a solution?
You guys can emulate the tiles with an image and the picture-entities card. Other than that, you’ll probably have to wait until @eddi89 makes a version that works in lovelace. I don’t think the .css would change much but the .js would because the configuration is different in lovelace. I could attempt to do it, but it would take a while (couple of weeks) because I need to learn .js and .css.
yes, as @petro mentioned, i switched to use the picture-entities, actually it allows much more customization.
Care do share a screenshot and maybe a code snippet?
check out the docs. You’ll have to make your own images, then place the elements on the image. The following link shows all sorts of example cards and the yaml with them.
@Steini1984, sure
- type: picture-elements
image: /local/images/multimedia/bg.png
elements:
- type: image
tap_action: call-service
service: scene.turn_on
entity: scene.kodi_switch
image: /local/images/multimedia/kodi-logo.png
state_image:
"off": /local/images/multimedia/kodi-logo.png
filter: saturate(0.1)
state_filter:
"on": brightness(120%) saturate(1.2)
style:
top: 25%
left: 15%
width: 15%
- type: image
tap_action: call-service
service: scene.turn_on
entity: scene.atv_switch
image: /local/images/multimedia/airplay-logo.png
state_image:
"off": /local/images/multimedia/airplay-logo.png
filter: brightness(70%)
state_filter:
"on": brightness(120%) saturate(1.2)
style:
top: 25%
left: 40%
width: 15%
- type: image
tap_action: call-service
service: scene.turn_on
entity: scene.chromecast_switch
image: /local/images/multimedia/chromecast-logo.png
state_image:
"off": /local/images/multimedia/chromecast-logo.png
filter: brightness(90%)
state_filter:
"on": brightness(120%) saturate(1.2)
style:
top: 25%
left: 65%
width: 15%
- type: image
tap_action: call-service
service: scene.turn_on
entity: scene.multimedia_force_off
image: /local/images/multimedia/power.png
state_image:
"off": /local/images/multimedia/power.png
filter: brightness(90%)
state_filter:
"on": brightness(120%) saturate(1.2)
style:
top: 25%
left: 85%
width: 15%
This is awsome!
Is it possible to add name under the icon?
Yes, but for now you have to use this custom element for it: https://github.com/custom-cards/text-element
I could have icon and the text? Or do I have to choose between?
State as text you can get natively but not just whatever text you want, for that you use the custom element.
What are you trying to do exactly? Just add a title?
I’m trying to add title under every icon if possible
Why don’t you just add the title to the image?
Or you can add a service call button with a dummy service.
That’s actualy a good idea, and place dummy service under the image!
Awsome, thanks!
that still doesn’t get what he wants… he wants a title placed anywhere on an image
Actualy, i switched to button card, and it works awsome