Guest User

Untitled

a guest
May 21st, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. texto1 aparecer com imagem1
  2. texto2 aparecer com imagem2
  3. texto3 aparecer com imagem3
  4.  
  5. <html>
  6. <head>
  7. <style>
  8. body {font-size: 98%;}
  9. </style>
  10.  
  11. <script type="text/javascript">
  12. function slide1(){
  13. document.getElementById('id').src="http://datafacilinformatica.com.br/passeio/imagem/foto-0.jpg";
  14. setTimeout("slide2()", 3000);
  15. document.getElementById('aId').href="link1.html";
  16. document.getElementById('aId').alt="slid1";
  17. }
  18.  
  19. function slide2(){
  20. document.getElementById('id').src="http://datafacilinformatica.com.br/passeio/imagem/foto-1.jpg";
  21. setTimeout("slide3()", 3000);
  22. document.getElementById('aId').href="link2.html";
  23. document.getElementById('aId').alt="slid2";
  24. }
  25.  
  26. function slide3(){
  27. document.getElementById('id').src="http://datafacilinformatica.com.br/passeio/imagem/foto-2.jpg";
  28. setTimeout("slide1()", 3000);
  29. document.getElementById('aId').href="link3.html";
  30. document.getElementById('aId').alt="slid3";
  31. }
  32. </script>
  33. <body onLoad="slide1()">
  34. <div id="aId1" style="position: relative;">
  35. <a id="aId"><img id="id" width="100%"></a>
  36. </div>
  37. <div id="aId2" style="position: relative; transparent; width:80%;height:50%;margin-top:0;margin-left: 10%; margin-right: 10%; text-align: center">
  38. <h1>texto slid 1</h1>
  39. </div>
  40. </body>
  41. </html>
Add Comment
Please, Sign In to add comment