Template:Team:Amsterdam/ernst/scripts

From 2012.igem.org

(Difference between revisions)
 
(107 intermediate revisions not shown)
Line 3: Line 3:
<script type='text/javascript'>
<script type='text/javascript'>
$(document).ready( function() {
$(document).ready( function() {
-
     $('head > style[media="screen, projection"]').remove();
+
     //$('head > style[media="screen, projection"]').remove();
 +
    //$('head > script[src="/forum/forum_scripts.js"]').remove();
 +
    //$('head > link[href="/wiki/skins/common/commonPrint.css?270"]').remove();
     $("head").append("<link>");
     $("head").append("<link>");
-
     css = $("head").children(":last");
+
     css = $("head > :last");
 +
    //css = $("head").children(":last");
     css.attr({
     css.attr({
       rel:  "stylesheet",
       rel:  "stylesheet",
Line 22: Line 25:
     });
     });
</script>
</script>
-
 
<!-- JQuery menu animations -->
<!-- JQuery menu animations -->
 +
<script type='text/javascript' src ='http://cherne.net/brian/resources/jquery.hoverIntent.minified.js'></script>
<script type='text/javascript'>
<script type='text/javascript'>
-
function mainmenu(){
+
function navmenu(){
-
$(" #nav ul ").css({display: "none"}); // Opera Fix
+
$(" #navmenu ul ul ").css({display: "none", height:'auto'}); // Opera Fix
-
$(" #nav li").hover(function(){
+
 
-
$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
+
var config = {   
-
},function(){
+
    over: function(){
-
$(this).find('ul:first').css({visibility: "hidden"});
+
$(this).find('ul:first').animate({display:'block', height:'show'},{queue:true, duration:400});
-
});
+
},  
 +
    timeout: 2500, // number = milliseconds delay before onMouseOut   
 +
    out: function(){
 +
$(this).find('ul:first').animate({height:'hide', display:'none'},{queue:true, duration:400});
 +
}
 +
};
 +
 
 +
$(" #navmenu ul li").hoverIntent(config);
}
}
   
   
-
$(document).ready(function(){
+
$(document).ready(function(){
-
mainmenu();
+
navmenu();
});
});
</script>
</script>
-
<!-- Facebook script -->
+
<!-- Facebook RSS Feed Processor -->
-
<script type='text/javascript'>
+
<script type='text/javascript' src='http://www.zazar.net/developers/jquery/zrssfeed/jquery.zrssfeed.min.js'></script>
-
  window.fbAsyncInit = function() {
+
<script type='text/javascript' src='scripts/fb-feed-collector.js?action=raw'></script>
-
    FB.init({
+
-
      appId      : 'YOUR_APP_ID', // App ID
+
-
      channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
+
-
      status    : true, // check login status
+
-
      cookie    : true, // enable cookies to allow the server to access the session
+
-
      xfbml      : true  // parse XFBML
+
-
    });
+
-
 
+
-
    // Additional initialization code here
+
-
  };
+
-
 
+
-
  // Load the SDK Asynchronously
+
-
  (function(d){
+
-
    var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
+
-
    if (d.getElementById(id)) {return;}
+
-
    js = d.createElement('script'); js.id = id; js.async = true;
+
-
    js.src = "//connect.facebook.net/en_US/all.js";
+
-
    ref.parentNode.insertBefore(js, ref);
+
-
  }(document));
+
-
</script>
+
</html>
</html>

Latest revision as of 13:05, 12 September 2012