historia-de-zainab/js/main.js

93 lines
2.2 KiB
JavaScript
Raw Normal View History

2017-09-26 11:17:09 +02:00
viewStatus= "story" /* data story */
pages= 0
totalPages=3;
2017-09-25 14:03:53 +02:00
window.onload = function() {
console.log("on load")
width = 1000,
height = 1000;
loadPageTemplates()
$('#pagepiling').pagepiling({
menu: null,
anchors: ["page1","page2","page3","page4"],
direction: 'horizontal',
verticalCentered: true,
scrollingSpeed: 800,
easing: 'swing',
afterLoad: function(anchorLink, index){
//using index
$('.btn-navigation.active').removeClass('active')
$('#nav-btn-page'+index + " a").addClass('active')
}
});
//turnEventsOn();
}
function loadPageTemplates(){
console.log("load templates")
2017-09-25 15:15:33 +02:00
$('#page-1').load("templates/page1.html",function(){
2017-09-26 11:17:09 +02:00
loadModalEvent(1);
counterLoading();
2017-09-25 15:15:33 +02:00
})
$('#page-2').load("templates/page2.html",function(){
2017-09-26 11:17:09 +02:00
loadModalEvent(2);
counterLoading();
2017-09-25 15:15:33 +02:00
})
$('#page-3').load("templates/page3.html",function(){
2017-09-26 11:17:09 +02:00
loadModalEvent(3);
counterLoading();
2017-09-25 15:15:33 +02:00
})
$('#page-4').load("templates/page4.html",function(){
2017-09-26 11:17:09 +02:00
loadModalEvent(4);
counterLoading();
2017-09-25 15:15:33 +02:00
})
turnEventsOn();
2017-09-26 11:17:09 +02:00
}
function loadModalEvent( i){
var modal = new jBox('Modal', {
attach: '#map-btn-page-'+i,
content: $('#map-page-'+i),
closeButton: 'box'
});
}
function counterLoading(){
pages++;
if(pages>totalPages){
$('.menu-content').on("click",'.switchMode', function(e){
console.log("menu content")
if(viewStatus=="story") viewStatus="data"
else{
viewStatus="story"
}
if(viewStatus=="story"){
$('.story-content').show();
$('.data-content').hide();
$('.menu-content .switchMode').empty().html("ver datos")
}
else{
$('.story-content').hide();
$('.data-content').show();
$('.menu-content .switchMode').empty().html("ver historia")
}
})
}
2017-09-25 14:03:53 +02:00
}
function turnEventsOn(){
2017-09-25 15:15:33 +02:00
/*$('#timeline').on("click",'.btn-navigation', function(e){
2017-09-25 14:03:53 +02:00
$('.btn-navigation.active').removeClass('active')
$(this).addClass('active')
2017-09-25 15:15:33 +02:00
})*/
2017-09-26 11:17:09 +02:00
}