Template:WUR script.js

From 2012.igem.org

(Difference between revisions)
 
(15 intermediate revisions not shown)
Line 18: Line 18:
// Sliders
// Sliders
-
$('#detection_slider').nivoSlider({
+
$('.detection_slider').nivoSlider({
effect: 'fade',
effect: 'fade',
directionNav: true,
directionNav: true,
Line 103: Line 103:
}
}
 +
 +
// Back to top button
 +
$('#thisisthetop').prependTo('body');
 +
$('#gototop').appendTo('body');
 +
// Fix prefixes for CSS3 styles
// Fix prefixes for CSS3 styles
$.getScript(prefixfreeUrl, function(){});
$.getScript(prefixfreeUrl, function(){});
-
 
-
// Animate the project overview
 
-
$('#poPnas, #poVLPs, #poOutside, #poInside, #poApplications').hide();
 
-
$('#poPnas').fadeIn(500, function(){
 
-
$('#poVLPs').fadeIn(500, function(){
 
-
$('#poOutside').fadeIn(500, function(){
 
-
$('#poInside').fadeIn(500, function(){
 
-
$('#poApplications').fadeIn(500, function(){});
 
-
});
 
-
});
 
-
});
 
-
});
 
-
 
-
// Click actions for the project overview
 
-
function poLoad(url) {
 
-
$('#poTextClose').fadeOut();
 
-
$('#poText').slideUp().fadeOut('fast', function(){
 
-
$('#poLoading').fadeIn('fast');
 
-
$('#poText').load(url, function(){
 
-
$('#poLoading').fadeOut('fast');
 
-
$('#poTextClose').fadeIn();
 
-
$(this).fadeIn().slideDown();
 
-
});
 
-
});
 
-
}
 
-
$('#poTextClose').click(function() {
 
-
$('#poText').slideUp().fadeOut();
 
-
$('#poTextClose').fadeOut();
 
-
});
 
-
$('#poPnas').click(function(){ poLoad('https://2012.igem.org/Team:Wageningen_UR/Pnas_ProjectOverview?action=render'); });
 
-
$('#poVLPs').click(function(){ poLoad('https://2012.igem.org/Team:Wageningen_UR/VLPs_ProjectOverview?action=render'); });
 
-
$('#poOutside').click(function(){ poLoad('https://2012.igem.org/Team:Wageningen_UR/OutsideModification_ProjectOverview?action=render'); });
 
-
$('#poInside').click(function(){ poLoad('https://2012.igem.org/Team:Wageningen_UR/InsideModification_ProjectOverview?action=render'); });
 
-
$('#poApplications').click(function(){ poLoad('https://2012.igem.org/Team:Wageningen_UR/Applications_ProjectOverview?action=render'); });
 
// Achievements animation
// Achievements animation
Line 154: Line 125:
if($.browser.msie && parseInt($.browser.version,10) < 9) {
if($.browser.msie && parseInt($.browser.version,10) < 9) {
$('.col').css('width','296px');
$('.col').css('width','296px');
 +
$('.twocol').css('width','617px');
}
}
Line 187: Line 159:
fillColor: 'ffffff',
fillColor: 'ffffff',
fillOpacity: 0.2,
fillOpacity: 0.2,
 +
stroke: false,
 +
strokeColor: '000000',
 +
strokeOpacity: 0.5,
 +
strokeWidth: 1,
 +
fade: true,
 +
alwaysOn: false,
 +
neverOn: false,
 +
groupBy: false,
 +
wrapClass: true,
 +
shadow: false,
 +
shadowX: 0,
 +
shadowY: 0,
 +
shadowRadius: 6,
 +
shadowColor: '000000',
 +
shadowOpacity: 0.8,
 +
shadowPosition: 'outside',
 +
shadowFrom: false
 +
});
 +
$('img.highlight3').maphilight({
 +
fill: true,
 +
fillColor: 'ffffff',
 +
fillOpacity: 0.4,
stroke: false,
stroke: false,
strokeColor: '000000',
strokeColor: '000000',
Line 206: Line 200:
});
});
-
// Add YT intro to home
+
// Project Overview
-
if($('#projectVideoPlayer').length > 0) {
+
$('#prOv > div.buttonbox').hover(function(){
-
var params = { allowScriptAccess: "always" };
+
$('#prOvText').html($(this).find('.hiddentext').html())
-
var atts = { id: "projectVideoPlayerId" };
+
$('#prOvText').show();
-
swfobject.embedSWF(
+
},function(){
-
'http://www.youtube.com/apiplayer?enablejsapi=1&version=3&playerapiid=projectVideoPlayerApi',
+
$('#prOvText').hide();
-
'projectVideoPlayer',
+
});
-
'480', '360',
+
-
'8',
+
-
null, null, params, atts
+
-
)
+
-
+
-
$('#projectVideoPlayerOverlay').click(function(){ytHandler(0, 0);});
+
-
$('#projectIntroPlayButton').click(function(){ytHandler(1, 0);}).hide();
+
-
}
+
});
});
-
var $ = jq18;
 
-
function onYouTubePlayerReady(playerid) {
+
$ = jq18;
-
ytHandler(2, playerid);
+
-
}
+
-
 
+
-
function ytHandler(action, data) {
+
-
+
-
var ytplayer = document.getElementById('projectVideoPlayerId');
+
-
+
-
switch(action) {
+
-
+
-
case 0:
+
-
// Stop
+
-
if(data!=1) { ytplayer.stopVideo(); }
+
-
$('#projectIntroPlayButton').fadeIn();
+
-
$('#projectIntro, #projectVideo').animate({'height': '75px'}, 'slow');
+
-
$('#projectVideoPlayerContainer').slideUp();
+
-
+
-
break;
+
-
+
-
case 1:
+
-
// Play
+
-
$('#projectIntroPlayButton').fadeOut();
+
-
$('#projectIntro, #projectVideo').animate({'height': '360px'}, 'slow', function(){
+
-
$('#projectVideoPlayerContainer').slideDown(function(){
+
-
ytplayer.playVideo();
+
-
});
+
-
});
+
-
break;
+
-
+
-
case 2:
+
-
// Initialize
+
-
ytplayer.loadVideoById('19JbFIIyi5c');
+
-
ytplayer.addEventListener("onStateChange", function(state){
+
-
+
-
switch(state) {
+
-
+
-
case 0:
+
-
// Ended
+
-
ytHandler(0,1);
+
-
break;
+
-
+
-
case 1:
+
-
// Playing
+
-
break;
+
-
+
-
case 2:
+
-
// Paused
+
-
break;
+
-
+
-
}
+
-
+
-
});
+
-
break;
+
-
+
-
default:
+
-
// Do nothing..
+
-
+
-
}
+
-
}
+
-
 
+
-
function onytplayerStateChange(state) {
+
-
+
-
ytplayer = document.getElementById('projectVideoPlayerApi');
+
-
+
-
/*
+
-
State:
+
-
-1 (unstarted)
+
-
0 (ended)
+
-
1 (playing)
+
-
2 (paused)
+
-
3 (buffering)
+
-
5 (video cued)
+
-
99(start playing video)
+
-
*/
+
-
+
-
if(state==0) {
+
-
ytplayer.stopVideo();
+
-
$('#projectIntroPlayButton').fadeIn();
+
-
$('#projectIntro, #projectVideo').animate({'height': '75px'}, 'slow');
+
-
$('#projectVideoPlayerContainer').slideUp();
+
-
}
+
-
+
-
if(state==1) {
+
-
$('#projectIntroPlayButton').fadeOut();
+
-
$('#projectIntro, #projectVideo').animate({'height': '360px'}, 'slow', function(){
+
-
$('#projectVideoPlayerContainer').slideDown();
+
-
});
+
-
}
+
-
+
-
if(state==5) {
+
-
if($.cookie('igemWURwatchedVideo') == 'watchedAll') {
+
-
onytplayerStateChange(0);
+
-
} else {
+
-
  ytplayer.playVideo();
+
-
}
+
-
}
+
-
+
-
if(state==99) {
+
-
ytplayer.playVideo();
+
-
}
+
-
}
+
-
 
+
-
//Load YouTube iframe player api asynchronously.
+
-
/*
+
-
var tag = document.createElement('script');
+
-
tag.src = "//www.youtube.com/iframe_api";
+
-
var firstScriptTag = document.getElementsByTagName('script')[0];
+
-
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
+
-
var player;
+
-
var curEvt;
+
-
function onYouTubeIframeAPIReady() {
+
-
    player = new YT.Player('projectVideoPlayer', {
+
-
      height: '360',
+
-
      width: '480',
+
-
      videoId: '19JbFIIyi5c',
+
-
      playerVars: {'rel': 0, 'autohide': 1, 'showinfo': 0, 'theme': 'light'},
+
-
      events: {
+
-
        'onReady': onPlayerReady,
+
-
        'onStateChange': onPlayerStateChange
+
-
      }
+
-
    });
+
-
}
+
-
function onPlayerReady(evt) {
+
-
curEvt = evt;
+
-
if($.cookie('igemWURwatchedVideo') == 'watchedAll') {
+
-
  endVideo();
+
-
} else {
+
-
    evt.target.playVideo();
+
-
  }
+
-
}
+
-
function endVideo() {
+
-
$('#projectVideoPlayerContainer').slideUp('slow', function(){
+
-
$('#projectIntro, #projectVideo').animate({'height': '50px'}, 'slow', function(){
+
-
$('#projectVideo a').fadeIn();
+
-
$('#projectVideo a').click(function(){
+
-
$('#projectVideo a').fadeOut();
+
-
$('#projectIntro, #projectVideo').animate({'height': '340px'}, 'slow');
+
-
$('#projectVideoPlayerContainer').slideDown('slow',function(){
+
-
curEvt.target.playVideo();
+
-
});
+
-
});
+
-
});
+
-
});
+
-
}
+
-
function onPlayerStateChange(evt) {
+
-
curEvt = evt;
+
-
    if(evt.data == YT.PlayerState.PAUSED ) {
+
-
    endVideo();
+
-
    }
+
-
    if(evt.data == YT.PlayerState.ENDED) {
+
-
    $.cookie('igemWURwatchedVideo', 'watchedAll');
+
-
    }
+
-
}
+
-
function stopVideo() {
+
-
    player.stopVideo();
+
-
}
+
-
*/
+

Latest revision as of 18:35, 26 October 2012

/* START SCRIPT */

var cssUrl = "https://2012.igem.org/Template:WUR_style.css?action=raw&ctype=text/css"; var nivoJsUrl = 'https://2012.igem.org/Template:WUR_nivo.js?action=raw&ctype=text/javascript'; var nivoCssUrl = "https://2012.igem.org/Template:WUR_nivo.css?action=raw&ctype=text/css"; var prefixfreeUrl = 'https://2012.igem.org/Template:WUR_prefixfree.js?action=raw&ctype=text/javascript';

var headerImgUrl = "";

jq18(document).ready(function($){

// CSS $("<link/>", { rel: "stylesheet", type: "text/css", href: cssUrl }).appendTo("head");

// Sliders $('.detection_slider').nivoSlider({ effect: 'fade', directionNav: true, controlNav: false, pauseTime: 4000, animSpeed: 500 });

// Move menu var menu = $('#navContainer'); $('#navContainer').remove(); $('#content').prepend(menu);

// Move header var header = $('#header_wrapper'); $('#header_wrapper').remove(); $('#content').prepend(header);

// Decorate menu function decorateMenu(el, i) { switch(i) { case 1: el.addClass('ulc1'); i += 1; break;

case 2: el.addClass('ulc2'); i += 1; break;

case 3: i = 1; break;

default: i += 1; } return i; } var i = 0; var ii = 0; menu.find('li').each(function(){ i = decorateMenu($(this),i); ii = $(this).find('ul').find('li').each(function(){decorateMenu($(this),ii);}); });

// Remove title attributes from the menu. // Though this is a bad practice, the design advantage weighted // heavier than the few optically impaired people who visit the // website. menu.find('[title]').removeAttr('title');

// Google Analytics var ga_script = "\ <script type=\"text/javascript\">\ var _gaq = _gaq || [];\ _gaq.push(['_setAccount', 'UA-33423824-1']);\ _gaq.push(['_trackPageview']);\ (function() {\ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\ })();\ </script>"; $('head').append(ga_script);

// Move the Footer $('#contentfooter').appendTo('#content');

$('.bigbutton').hover(function(){ $(this).find('img').animate({ 'margin-top': '-175px' },'fast'); },function(){ $(this).find('img').animate({ 'margin-top': '0px' },'fast'); });

// If an anchor-link was pressed, make sure the scrolling was done correctly. if(location.hash) { var sId = location.hash.substr(1); var sEl = document.getElementById(sId); var sJQ = $(sEl);

setTimeout(function(){ $(document).scrollTop(sJQ.offset().top); }, 250);

}

// Back to top button $('#thisisthetop').prependTo('body'); $('#gototop').appendTo('body');


// Fix prefixes for CSS3 styles $.getScript(prefixfreeUrl, function(){});

// Achievements animation $('.achievement').click(function(){ $(this).find('.achievement-desc').slideDown('fast'); }); $('.achievement').hover(function(){ //$(this).find('.achievement-desc').slideDown('fast'); },function(){ $(this).find('.achievement-desc').slideUp('fast'); });

// IE8 column correction if($.browser.msie && parseInt($.browser.version,10) < 9) { $('.col').css('width','296px'); $('.twocol').css('width','617px'); }

// Fancybox $('.fancybox').fancybox(); $('.iframefancybox').fancybox({type: 'iframe'});

// Map highlights: $('img.highlight').maphilight({ fill: true, fillColor: 'ffffff', fillOpacity: 0.2, stroke: true, strokeColor: '000000', strokeOpacity: 0.5, strokeWidth: 1, fade: true, alwaysOn: false, neverOn: false, groupBy: false, wrapClass: true, shadow: false, shadowX: 0, shadowY: 0, shadowRadius: 6, shadowColor: '000000', shadowOpacity: 0.8, shadowPosition: 'outside', shadowFrom: false }); $('img.highlight2').maphilight({ fill: true, fillColor: 'ffffff', fillOpacity: 0.2, stroke: false, strokeColor: '000000', strokeOpacity: 0.5, strokeWidth: 1, fade: true, alwaysOn: false, neverOn: false, groupBy: false, wrapClass: true, shadow: false, shadowX: 0, shadowY: 0, shadowRadius: 6, shadowColor: '000000', shadowOpacity: 0.8, shadowPosition: 'outside', shadowFrom: false }); $('img.highlight3').maphilight({ fill: true, fillColor: 'ffffff', fillOpacity: 0.4, stroke: false, strokeColor: '000000', strokeOpacity: 0.5, strokeWidth: 1, fade: true, alwaysOn: false, neverOn: false, groupBy: false, wrapClass: true, shadow: false, shadowX: 0, shadowY: 0, shadowRadius: 6, shadowColor: '000000', shadowOpacity: 0.8, shadowPosition: 'outside', shadowFrom: false });

// Project Overview $('#prOv > div.buttonbox').hover(function(){ $('#prOvText').html($(this).find('.hiddentext').html()) $('#prOvText').show(); },function(){ $('#prOvText').hide(); });

});


$ = jq18;