Advertisement
Guest User

FOOTER

a guest
Mar 7th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. <?php
  2. /**
  3. * footer
  4. */
  5. ?>
  6. <!--FOOTER-->
  7. <div id="footer">
  8. </div>
  9. <div id="toTop"><img src="totop-1.png" alt="to top" width="39" height="39" /></div>
  10. <!--END footer-->
  11. <!--JQUERY-->
  12. <!--SLIDES POSTS CULTURA HOME-->
  13. <script type='text/javascript' src='jquery.easing.1.3.js'></script>
  14. <script type='text/javascript' src='jquery.hoverIntent.minified.js'></script>
  15. <script type='text/javascript' src='diapo.js'></script>
  16. <script type="text/javascript">
  17. $(document).ready(function(){
  18. $('.pix_diapo').diapo();
  19. });
  20. </script>
  21. <!-- CAROUSEL SLIDES POSTS ENTRETENCIÓN HOME -->
  22. <script src="jquery.jcarousel.min.js" type="text/javascript"></script>
  23. <script type="text/javascript">
  24. $(document).ready(function(){
  25. jQuery('#carousel-home').jcarousel({
  26. wrap: 'circular'
  27. });
  28. });
  29. </script>
  30. <!--LOGOTIPO-->
  31. <script type="text/javascript">
  32. $(document).ready(function(){
  33. $(".rollover").css({'opacity':'0'});
  34. $('#logo-isotipo a').hover(
  35. function() {
  36. $(this).find('.rollover').stop().fadeTo(500, 1);
  37. },
  38. function() {
  39. $(this).find('.rollover').stop().fadeTo(500, 0);
  40. }
  41. )
  42. });
  43. </script>
  44. <!--BOTONES FADE-->
  45. <script type="text/javascript">
  46. $(document).ready(function(){
  47. // REDES SOCIELES
  48. jQuery("#header-redes-sociales").delegate("li", "mouseover mouseout", function(e) {
  49. if (e.type == 'mouseover') {
  50. jQuery("#header-redes-sociales li").not(this).dequeue().animate({opacity: "0.3"}, 300);
  51. } else {
  52. jQuery("#header-redes-sociales li").not(this).dequeue().animate({opacity: "1"}, 300);
  53. }
  54. });
  55. });
  56. </script>
  57. <!--SCROLL TO TOP-->
  58. <script type="text/javascript">
  59. $(document).ready(function(){
  60. $(window).scroll(function() {
  61. if($(this).scrollTop() != 0) {
  62. $('#toTop').fadeIn();
  63. } else {
  64. $('#toTop').fadeOut();
  65. }
  66. });
  67. $('#toTop').click(function() {
  68. $('body,html').animate({scrollTop:0},800);
  69. });
  70. });
  71. </script>
  72. <!--FIN JQUERY SCRIPTS-->
  73. </div><!-- #contenedor -->
  74. <?php wp_footer(); ?>
  75. </body>
  76. <!--END body-->
  77. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement