Guest User

Untitled

a guest
Jul 21st, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>canvas test</title>
  5. <style>
  6. #man1 {
  7. background-image: url(man1.png);
  8. width: 100px;
  9. height: 100px;
  10. }
  11. <meta name="description" content=""/>
  12. <script>
  13. console.log(document.getelementbyid('man1').style.backgroundimage);
  14. settimeout("", 1000);
  15. document.getelementbyid('man1').style.backgroundimage="url(man1.png)";
  16. </script>
  17. </head>
  18. <body>
  19. <div id="man1"></div>
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment