Advertisement
hellgames1

crt_weather_station_html

Aug 1st, 2023 (edited)
1,279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | None | 0 0
  1. <!-- Might need to adjust top: and left: values in the CSS part, depending on how you tune the CRT  -->
  2. <!-- ...but in that case you also need to adjust mouse X and Y values in the Python script if you move it too much -->
  3. <!-- so try to make it fit nicely more through the CRT controls -->
  4. <!-- Replace "plovdiv" with your town/city -->
  5. <!-- Replace 1800 in the meta http-equiv part if you want it to refresh more or less often (1800 seconds is 30 minutes) -->
  6.  
  7. <!doctype html>
  8. <html>
  9. <head>
  10. <meta http-equiv="refresh" content="1800">
  11. <style type="text/css">
  12. body {
  13.     overflow: hidden;
  14. }
  15. #arr {
  16. cursor: none;
  17. border: 0px;
  18. position: absolute;
  19. top:-280px;
  20. left:-20px;
  21. width: 800px;
  22. height: 600px;
  23. -webkit-transform: scale(1.3);
  24. -webkit-transform-origin: 0 0;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <iframe scrolling="no" src="https://www.google.com/search?q=weather+plovdiv&oq=weather&igu=1" id="arr"></iframe>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement