Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3. <head>
  4.  
  5. <meta charset="UTF-8" />
  6.  
  7. <link href="style.css" rel="stylesheet" type="text/css" />
  8.  
  9. <title>:O</title>
  10.  
  11. </head>
  12.  
  13. <body>
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. <div id="gora">
  23. <Br/>
  24. <div class="tekst"> <center>cwiczenie 7</center> </div>
  25. <hr width="500px" size="2" bgcolor="#fff" color="#fff"/>
  26. </div>
  27.  
  28. <center><input type="range" min=0 max=300 value="300" id="suwak"/></center>
  29.  
  30. <div id="srodek">
  31.  
  32. <img src="kot.jpg" id="zdjkota"/>
  33.  
  34. <script type="text/javascript" src="cw6.js" ></script>
  35.  
  36. </div>
  37.  
  38.  
  39.  
  40. </body>
  41. </html>
  42.  
  43.  
  44.  
  45. ///////////////
  46.  
  47.  
  48.  
  49. window.onload = start()
  50.  
  51. const obraz = document.getElementById("zdjkota");
  52.  
  53. function start()
  54. {
  55.  
  56. document.querySelector("#suwak").oninput= function(){
  57. document.querySelector("#zdjkota").style.height = this.value+"px";
  58.  
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement