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
var options = {
"direction" : "right", // 'left|right|up|down', default 'left' (which is like 'next')
"duration" : 500, // in milliseconds (ms), default 400
"slowdownfactor" : 3, // overlap views (higher number is more) or no overlap (1). -1 doesn't slide at all. Default 4
"slidePixels" : 20, // optional, works nice with slowdownfactor -1 to create a 'material design'-like effect. Default not set so it slides the entire page.
"iosdelay" : 100, // ms to wait for the iOS webview to update before animation kicks in, default 60
"androiddelay" : 150, // same as above but for Android, default 70
"winphonedelay" : 250, // same as above but for Windows Phone, default 200,
"fixedPixelsTop" : 0, // the number of pixels of your fixed header, default 0 (iOS and Android)
"fixedPixelsBottom": 60 // the number of pixels of your fixed footer (f.i. a tab bar), default 0 (iOS and Android)
};
window.plugins.nativepagetransitions.flip(
options,
function (msg) {
},
function (msg) {
alert(msg);
}
);
and this is an html tag:
<a href="contact.html" data-transition="flip:left">
Go to newride.html page
</a>
But this just loads as a default, just as without the plugin...
What should I do?
The text was updated successfully, but these errors were encountered:
This is under deviceready event:
and this is an html tag:
But this just loads as a default, just as without the plugin...
What should I do?
The text was updated successfully, but these errors were encountered: