Telerik-Verified-Plugins / NativePageTransitions

Native transitions like Slide and Flip for iOS, Android and Windows Phone
277 stars 107 forks source link

Animation Issue #67

Open samichkeir opened 9 years ago

samichkeir commented 9 years ago

Hi, 1-how can i change page faster i means when i click on href it's take about 5 second to start change page with effect . 2- slide effect need to be tab twice to work fine i try a lot of value for androiddelay property . 3- there is no callback function that be called after the requested page be totaly loaded .

My code is below :

function changePage(hrf) { var theOptions = { "direction" : "up", "duration" : 500, "slowdownfactor" : 3, "androiddelay" : 10, "href": hrf }; window.plugins.nativepagetransitions.fade( { 'duration': 500, 'href': hrf }, function () { alert("callback"); }, function (msg) { // alert('error: ' + msg); }); }

html page:

  • Contact us
  • Thanks a lots

    EddyVerbruggen commented 9 years ago

    Hi, I'll need your entire project, or at least a small version of it which will reproduce the issue. Is that possible?

    Also helpful: which device / Android version?

    samichkeir commented 9 years ago

    Home page : home.html

    <!DOCTYPE html>

    Doclinics
    logo ```
    FIND YOUR DOCTOR
    AND MAKE AN APPOINTMENT!
    FIND
    FIND
    Search Results
    ```

    Jquery main.js function changePage(hrf) { var theOptions = { "direction" : "up", "duration" : 500, "slowdownfactor" : 3, "androiddelay" : 10, "href": hrf }; window.plugins.nativepagetransitions.fade( { 'duration': 500, 'href': hrf }, function () { alert("callback"); }, function (msg) { // alert('error: ' + msg); }); }

    samichkeir commented 9 years ago

    that a sample where i use NativePAge transition i didn't change in NativePageTransitions.js or java file

    samichkeir commented 9 years ago

    is there any solution ?

    EddyVerbruggen commented 9 years ago

    Can you please share a small demo app reproducing this issue? That would surely help confirming and tackling this issue.