We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 469f12c commit 67ff6dbCopy full SHA for 67ff6db
static/index.html
@@ -6,6 +6,11 @@
6
<title>SCE LED Sign</title>
7
</head>
8
<body>
9
- <h3>hello from the sign :D</h3>
+ <marquee id = "test" direction ="left" scrollamount = {{sign_message.to_dict()['scrollSpeed']}} style = "border-style: solid; border-width: 10px; font-family: monospace;font-size: 50px;">{{sign_message.to_dict()['text']}}</marquee>
10
+ <script>
11
+ document.getElementById("test").style.color = '{{sign_message.to_dict()['textColor']}}';
12
+ document.getElementById("test").style.backgroundColor = '{{sign_message.to_dict()['backgroundColor']}}';
13
+ document.getElementById("test").style.borderColor = '{{sign_message.to_dict()['borderColor']}}';
14
+ </script>
15
</body>
16
</html>
0 commit comments