admin管理员组文章数量:1346060
I'm trying to implement a transition effect on my Jssor slider, but I'm unsure where to place the options.
The website has a transition code generator which I used, but no matter where I seem to place the code the slider doesn't use the transition.
This is my current attempt:
<script type="text/javascript">
jQuery(document).ready(function ($) {
var options =
{
$DragOrientation: 3,
$AutoPlay: true,
$SlideDuration: 1500,
$AutoPlayInterval: 4500,
$SlideshowOptions: {
$Transitions: { $Duration: 600, $Delay: 50, $Cols: 8, $Rows: 4, $FlyDirection: 5, $Formation: $JssorSlideshowFormations$.$FormationZigZag, $Assembly: 1028, $ChessMode: { $Column: 3, $Row: 12 }, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Top: $JssorEasing$.$EaseInCubic, $Opacity: $JssorEasing$.$EaseOutQuad }, $Opacity: 2 }
}
}
var jssor_slider1 = new $JssorSlider$('banner_slider', options);
});
</script>
I'm trying to implement a transition effect on my Jssor slider, but I'm unsure where to place the options.
The website has a transition code generator which I used, but no matter where I seem to place the code the slider doesn't use the transition.
This is my current attempt:
<script type="text/javascript">
jQuery(document).ready(function ($) {
var options =
{
$DragOrientation: 3,
$AutoPlay: true,
$SlideDuration: 1500,
$AutoPlayInterval: 4500,
$SlideshowOptions: {
$Transitions: { $Duration: 600, $Delay: 50, $Cols: 8, $Rows: 4, $FlyDirection: 5, $Formation: $JssorSlideshowFormations$.$FormationZigZag, $Assembly: 1028, $ChessMode: { $Column: 3, $Row: 12 }, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Top: $JssorEasing$.$EaseInCubic, $Opacity: $JssorEasing$.$EaseOutQuad }, $Opacity: 2 }
}
}
var jssor_slider1 = new $JssorSlider$('banner_slider', options);
});
</script>
Share
Improve this question
edited Apr 15, 2014 at 4:32
Daniel Powell
8,31312 gold badges63 silver badges108 bronze badges
asked Jan 17, 2014 at 18:31
Tom BowenTom Bowen
8,5544 gold badges23 silver badges45 bronze badges
1 Answer
Reset to default 9I managed to find a working example and found out the correct format:
<script type="text/javascript">
jQuery(document).ready(function ($) {
var _SlideshowTransitions = [{
$Duration: 600,
$Delay: 50,
$Cols: 8,
$Rows: 4,
$FlyDirection: 5,
$Formation:
$JssorSlideshowFormations$.$FormationZigZag,
$Assembly: 1028,
$ChessMode: { $Column: 3, $Row: 12 },
$Easing: { $Left: $JssorEasing$.$EaseInCubic, $Top: $JssorEasing$.$EaseInCubic, $Opacity: $JssorEasing$.$EaseOutQuad },
$Opacity: 2
}];
var options = {
$DragOrientation: 3,
$AutoPlay: true,
$SlideDuration: 1500,
$AutoPlayInterval: 4500,
$SlideshowOptions: { //Options which specifies enable slideshow or not
$Class: $JssorSlideshowRunner$, //Class to create instance of slideshow
$Transitions: _SlideshowTransitions, //Transitions to play slide, see jssor slideshow transition builder
$TransitionsOrder: 1, //The way to choose transition to play slide, 1 Sequence, 0 Random
$ShowLink: 2, //0 After Slideshow, 2 Always
$ContentMode: false //Whether to trait content as slide, otherwise trait an image as slide
}
};
var jssor_slider1 = new $JssorSlider$("banner_slider", options);
});
</script>
本文标签: javascriptJssor slider transitionsStack Overflow
版权声明:本文标题:javascript - Jssor slider transitions - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743822876a2545107.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论