transicion cuqui

This commit is contained in:
Sergio 2017-09-26 14:01:06 +02:00
parent 9676f6c88b
commit eb473dc749
11 changed files with 36 additions and 13 deletions

View file

@ -56,13 +56,13 @@ function counterLoading(){
viewStatus="story"
}
if(viewStatus=="story"){
$('.story-content').show();
$('.data-content').hide();
$('.story-content').css('transform','rotateY(0)')
$('.data-content').css('transform','rotateY(180deg)')
$('.menu-content .switchMode').empty().html("ver datos")
}
else{
$('.story-content').hide();
$('.data-content').show();
$('.story-content').css('transform','rotateY(180deg)')
$('.data-content').css('transform','rotateY(0)')
$('.menu-content .switchMode').empty().html("ver historia")
}
})