| import streamlit as st |
| from streamlit.components.v1 import html |
|
|
| |
| my_js = """ alert("Hola mundo"); """ |
|
|
| |
| my_html = f""" |
| <head> |
| <script>{my_js}</script> |
| <style> |
| .hi {{ |
| border: 2px solid red; |
| padding: 10px; |
| border-radius: 25px; |
| }} |
| </style> |
| </head> |
| <body bgcolor="white"> |
| <div class="hi"> |
| Test |
| </div> |
| <script type="text/javascript"> |
| atOptions = {{ |
| 'key' : 'aa6d8a1256bea03bbcd6b9a059c9585c', |
| 'format' : 'iframe', |
| 'height' : 60, |
| 'width' : 468, |
| 'params' : {{}} |
| }}; |
| </script> |
| <script type="text/javascript" src="//incompetencesorting.com/aa6d8a1256bea03bbcd6b9a059c9585c/invoke.js"></script> |
| </body> |
| """ |
|
|
| |
| st.title("Javascript example") |
| st.components.v1.html(my_html, height=300) |