Advertisement
pqpxoxa

HA - Pulse Card Example

Oct 11th, 2020
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. entity: [YOUR ENTITY HERE]
  2. extra_styles: |
  3. @keyframes pulse {
  4. 0% {
  5. -moz-box-shadow: 0 0 0 0 rgba(255,0,0, 0.7);
  6. box-shadow: 0 0 0 0 rgba(255,0,0, 0.7);
  7. }
  8. 70% {
  9. -moz-box-shadow: 0 0 0 10px rrgba(240,52,52, 0.9);
  10. box-shadow: 0 0 0 10px rgba(240,52,52, 0.7);
  11. }
  12. 100% {
  13. -moz-box-shadow: 0 0 0 0 rgba(240,52,52, 0);
  14. box-shadow: 0 0 0 0 rgba(240,52,52, 0);
  15. }
  16. name: Back
  17. state:
  18. - icon: 'mdi:door-closed'
  19. styles:
  20. icon:
  21. - opacity: 0.5
  22. value: 'off'
  23. - color: white
  24. icon: 'mdi:door-open'
  25. operator: default
  26. styles:
  27. card:
  28. - animation: pulse 1s infinite
  29. type: 'custom:button-card'
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement