Advertisement
Guest User

video and image example

a guest
Jun 6th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <html>
  2. <body>
  3.  
  4. <h2>My First JavaScript</h2>
  5.  
  6.  
  7. <div id="video" class="UJAwNkhbYWM"> </div>
  8.  
  9. <div id="div"><img id="img"></div>
  10.  
  11. <br>
  12. Enter Text To Play:
  13. <input id="text" value="">
  14. <br>
  15.  
  16. <button class="btn btn-success" onclick="talk()">Atenas
  17. Falar!</button>
  18.  
  19. <button type="button"
  20. onclick="document.getElementById('demo').innerHTML = Date()">
  21. Click me to display Date and Time.</button>
  22.  
  23. <p id="demo"></p>
  24.  
  25. <script>
  26. var nota = document.getElementById("text").value;
  27.  
  28. function limparimg() { document.getElementById("div").innerHTML=""; }
  29. function limparvid() { document.getElementById("video").innerHTML=""; }
  30.  
  31. function videoof(){
  32.  
  33. var video = document.getElementById("video");
  34. var video_class = video.className;
  35. var iFrame = '<iframe id="caixa" allowfullscreen="" frameborder="0" height="200" width="250" src="https://www.youtube.com/embed/' + video_class + '"></iframe>';
  36. video.innerHTML = iFrame;
  37. }
  38.  
  39. function mostracav(){
  40. var foto=new Array(10);
  41. foto[0]="<img src=http://www.ficasimples.com.br/eliza/cavit.jpg>";
  42. foto[1]="<img src=http://www.ficasimples.com.br/eliza/cavit1.jpg";
  43. foto[2]="<img src=http://www.ficasimples.com.br/eliza/cavit2.jpg>";
  44. foto[3]="<img src=http://www.ficasimples.com.br/eliza/cavit3.jpg>";
  45. foto[4]="<img src=http://www.ficasimples.com.br/eliza/cavit4.jpg>";
  46. foto[5]="<img src=http://www.ficasimples.com.br/eliza/cavit5.jpg>";
  47. foto[6]="<img src=http://www.ficasimples.com.br/eliza/cavit6.jpg>";
  48. foto[7]="<img src=http://www.ficasimples.com.br/eliza/cavit7.jpg>";
  49. foto[8]="<img src=http://www.ficasimples.com.br/eliza/cavit8.jpg>";
  50. foto[9]="<img src=http://www.ficasimples.com.br/eliza/cavit9.jpg>";
  51. foto[10]="<img src=http://www.ficasimples.com.br/eliza/cavit10.jpg>";
  52. num=0
  53. sorteia=Math.random(num)*6
  54. ok=Math.round(sorteia)
  55.  
  56. document.getElementById("div").innerHTML = foto[ok];
  57. }
  58.  
  59. function talk(){
  60. var nota = document.getElementById("text").value;
  61. var vid ="vid";
  62. var qya ="foto";
  63. if (nota == "vid") { limparimg(); videoof();}
  64. else if (nota == "foto" ) { limparvid(); mostracav();}
  65. }
  66.  
  67. </script>
  68.  
  69. </body>
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement