Guest User

Untitled

a guest
Jan 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <head>
  2. <title>Los Colores Olvidados</title>
  3. <link rel="stylesheet" type="text/css" href="css/book.css">
  4. <link rel="stylesheet" type="text/css" href="css/c_portada.css">
  5. <style type="text/css">
  6. #ojos{
  7. width:81px;
  8. height:41px;
  9. position:absolute;
  10. top:816px;
  11. left:53px;
  12. display:none;
  13. background-image:url(../../images/img/ojos_portada.png);
  14. }
  15.  
  16. #ventana{
  17. position:absolute;
  18. top:0;
  19. left:0;
  20. width:100%;
  21. height:100%;
  22. cursor:pointer;
  23. }
  24.  
  25. </style>
  26.  
  27. <script type="text/javascript" src="script/jquery.js"></script>
  28. <script type="text/javascript" src="script/audio.js"></script>
  29. <script type="text/javascript">
  30. $(document).ready(function() {
  31. $('#ventana').click(function(){
  32. play_sound('../../sounds/intro.m4a');
  33. });
  34.  
  35. function ojos(){
  36. $("#ojos").slideDown(100,function() {
  37. $('#ojos').slideUp(50);
  38. });
  39. }
  40. setInterval(function(){
  41. ojos();
  42. },4000);
  43.  
  44. });
  45. </script>
  46.  
  47. </head>
Add Comment
Please, Sign In to add comment