slideshow - Using transition effect instead of easing -


i trying have slides in specific transition. right now, have called "easing" used within slideshow. problem have no idea how change specific portion. have modified slideshow great extent make usable work project working on. wanna use work , myself, because find such slideshow. but, love have simple transition sudo slider, opposed easing.

(once have basic transitition, change sudo transitiion effect, not problem) anyhow, plugin found - sudo slider - found on website http://webbies.dk/assets/files/sudoslider/package/demos/continuous.html

<script type="text/javascript" >    $(document).ready(function(){       var sudoslider = $("#slider").sudoslider({          numeric: true          continuous:true       });    }); </script> 

as slideshow (called movingboxes), 1 of things have modified within code. speed, have put @ 1 "remove" effect of easing. capable of using sudo slider transition effects instead (or other non-easing transition effect). how achieve this?

$.movingboxes.defaultoptions = {         // appearance         startpanel   : 1,         reducedsize  : 1,          fixedheight  : false,           // behaviour         initanimation: false,         stopanimation: false,          hashtags: true,          wrap: true,          buildnav: false,              navformatter: null,          easing: 'easeinoutquint',          // times         speed: 1, // animation time in milliseconds - 500 original 

}

you seem think transition effects setting option, it't not.

each of transition effects see in e.g. sudoslider made of complex code.

you take @ function "boxtemplate" in: http://webbies.dk/assets/files/sudoslider/package/js/jquery.sudoslider.js

the "boxtemplate" function defines different effects involving boxes in sudoslider.

if moved work script movingboxes, happily it.

but making work movingboxes involve rewriting of it, that's not going happen here on stackoverflow.


Comments

Popular posts from this blog

html - Styling progress bar with inline style -

java - Oracle Sql developer error: could not install some modules -

How to use autoclose brackets in Jupyter notebook? -