Removed animation on desktop and arrows on mobile
This commit is contained in:
parent
7699fd0498
commit
942a922a45
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -45,6 +45,10 @@
|
|||||||
margin: 40px 0px 0px 50px !important;
|
margin: 40px 0px 0px 50px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#imageview .arrow_wrapper {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
.message {
|
.message {
|
||||||
position: fixed !important;
|
position: fixed !important;
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
@ -57,7 +61,7 @@
|
|||||||
-moz-animation: moveUp .3s !important;
|
-moz-animation: moveUp .3s !important;
|
||||||
animation: moveUp .3s !important;
|
animation: moveUp .3s !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.upload_message {
|
.upload_message {
|
||||||
top: 50% !important;
|
top: 50% !important;
|
||||||
left: 50% !important;
|
left: 50% !important;
|
||||||
|
@ -56,43 +56,59 @@ photo = {
|
|||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
previous: function() {
|
previous: function(animate) {
|
||||||
|
|
||||||
|
var delay = 0;
|
||||||
|
|
||||||
if (album.json&&
|
if (album.json&&
|
||||||
album.json.content[photo.getID()]&&
|
album.json.content[photo.getID()]&&
|
||||||
album.json.content[photo.getID()].previousPhoto!=="") {
|
album.json.content[photo.getID()].previousPhoto!=="") {
|
||||||
|
|
||||||
$("#image").css({
|
if (animate===true) {
|
||||||
WebkitTransform: 'translateX(100px)',
|
|
||||||
MozTransform: 'translateX(100px)',
|
delay = 100;
|
||||||
transform: 'translateX(100px)',
|
|
||||||
opacity: 0
|
$("#image").css({
|
||||||
});
|
WebkitTransform: 'translateX(100%)',
|
||||||
|
MozTransform: 'translateX(100%)',
|
||||||
|
transform: 'translateX(100%)',
|
||||||
|
opacity: 0
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
lychee.goto(album.getID() + "/" + album.json.content[photo.getID()].previousPhoto)
|
lychee.goto(album.getID() + "/" + album.json.content[photo.getID()].previousPhoto)
|
||||||
}, 100);
|
}, delay);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
next: function() {
|
next: function(animate) {
|
||||||
|
|
||||||
|
var delay = 0;
|
||||||
|
|
||||||
if (album.json&&
|
if (album.json&&
|
||||||
album.json.content[photo.getID()]&&
|
album.json.content[photo.getID()]&&
|
||||||
album.json.content[photo.getID()].nextPhoto!=="") {
|
album.json.content[photo.getID()].nextPhoto!=="") {
|
||||||
|
|
||||||
$("#image").css({
|
if (animate===true) {
|
||||||
WebkitTransform: 'translateX(-100px)',
|
|
||||||
MozTransform: 'translateX(-100px)',
|
delay = 100;
|
||||||
transform: 'translateX(-100px)',
|
|
||||||
opacity: 0
|
$("#image").css({
|
||||||
});
|
WebkitTransform: 'translateX(-100%)',
|
||||||
|
MozTransform: 'translateX(-100%)',
|
||||||
|
transform: 'translateX(-100%)',
|
||||||
|
opacity: 0
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
lychee.goto(album.getID() + "/" + album.json.content[photo.getID()].nextPhoto);
|
lychee.goto(album.getID() + "/" + album.json.content[photo.getID()].nextPhoto);
|
||||||
}, 100);
|
}, delay);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,8 +40,8 @@ swipe = {
|
|||||||
|
|
||||||
console.log('stop with ' + e.x);
|
console.log('stop with ' + e.x);
|
||||||
|
|
||||||
if (e.x<=-swipe.tolerance) left();
|
if (e.x<=-swipe.tolerance) left(true);
|
||||||
else if (e.x>=swipe.tolerance) right();
|
else if (e.x>=swipe.tolerance) right(true);
|
||||||
else {
|
else {
|
||||||
console.log('reset');
|
console.log('reset');
|
||||||
swipe.obj.css({
|
swipe.obj.css({
|
||||||
|
Loading…
Reference in New Issue
Block a user