What are and Where to find officially the list of `nivo slider` animation options? [closed]

早过忘川 提交于 2019-12-12 05:16:27

问题


Nivo Slider is great for image sliding.

I google for list of nivo slider animation options but no helpful results I get.

So the question is:

What are and Where to find officially the list of nivo slider animation options?

Cheers


回答1:


Is this what you're looking for? Nivo Slider It's at the bottom of the page.




回答2:


See this page here.

The options are listed in the fourth code block




回答3:


if you are looking for settings they are in jquery.slider.js on line # 637 onwards




回答4:


on the Nivo Slider Website -> Documentation -> jQuery Plugin Usage you will find this on the bottom of the page:

The Nivo Slider has plenty of options to fiddle with. Below is an example of the code with all available options and their defaults:

<script type="text/javascript">
$(window).load(function() {
    $('#slider').nivoSlider({
        effect: 'random', // Specify sets like: 'fold,fade,sliceDown'
        slices: 15, // For slice animations
        boxCols: 8, // For box animations
        boxRows: 4, // For box animations
        animSpeed: 500, // Slide transition speed
        pauseTime: 3000, // How long each slide will show
        startSlide: 0, // Set starting Slide (0 index)
        directionNav: true, // Next & Prev navigation
        controlNav: true, // 1,2,3... navigation
        controlNavThumbs: false, // Use thumbnails for Control Nav
        pauseOnHover: true, // Stop animation while hovering
        manualAdvance: false, // Force manual transitions
        prevText: 'Prev', // Prev directionNav text
        nextText: 'Next', // Next directionNav text
        randomStart: false, // Start on a random slide
        beforeChange: function(){}, // Triggers before a slide transition
        afterChange: function(){}, // Triggers after a slide transition
        slideshowEnd: function(){}, // Triggers after all slides have been shown
        lastSlide: function(){}, // Triggers when last slide is shown
        afterLoad: function(){} // Triggers when slider has loaded
    });
});
</script>

The effect parameter can be any of the following:

sliceDown
sliceDownLeft
sliceUp
sliceUpLeft
sliceUpDown
sliceUpDownLeft
fold
fade
random
slideInRight
slideInLeft
boxRandom
boxRain
boxRainReverse
boxRainGrow
boxRainGrowReverse


来源:https://stackoverflow.com/questions/8603888/what-are-and-where-to-find-officially-the-list-of-nivo-slider-animation-option

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!