-
Notifications
You must be signed in to change notification settings - Fork 8
[Style] Digital Clock #8
knoop7
started this conversation in
Show and tell
This module provides a Digital Clock for HTML Pro Card. A beautiful gradient clock with monospace font that updates every second.
Author: knoop7 | Version: 1.0
🧩 Get this Module
Copy the complete config below and paste into your dashboard.
type: custom:html-pro-card do_not_parse: true update_interval: 1000 ignore_line_breaks: true content: |- <style> .clock { font-size: 48px; font-family: 'SF Mono', 'Consolas', monospace; text-align: center; padding: 40px; background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; border-radius: 16px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); } </style> <div class="clock" id="clock">00:00:00</div> <script> setInterval(function() { $("#clock").textContent = new Date().toLocaleTimeString(); }, 1000); </script>
Screenshot
All reactions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment