You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! First of all, thank you for the great plugin! I have a problem in my app, where i have screen A, and when i try to slide to screen B, it'll slide perfectly to screen A and after its done sliding it loads B. If i increase the time from 300ms to 1000ms, screen B shows up in the middle of the animation sliding in (maybe after 500ms). I'm using the animations on an "onclick" event with almost the default configuration, always using the href. Heres the config:
Hi! First of all, thank you for the great plugin! I have a problem in my app, where i have screen A, and when i try to slide to screen B, it'll slide perfectly to screen A and after its done sliding it loads B. If i increase the time from 300ms to 1000ms, screen B shows up in the middle of the animation sliding in (maybe after 500ms). I'm using the animations on an "onclick" event with almost the default configuration, always using the href. Heres the config:
and the js:
function slide(direction, color, slowdownfactor, hrf) {
var theOptions = {
'direction': direction,
'duration': 300,
'slowdownfactor' : slowdownfactor,
'href': hrf,
'fixedPixelsTop' : 0,
'fixedPixelsBottom': 0
};
window.plugins.nativepagetransitions.slide(
theOptions,
function () {
console.log('------------------- slide transition finished');
},
function (msg) {
alert('error: ' + msg);
});
}
Thanks for your help!
The text was updated successfully, but these errors were encountered: