jQWidgets jqxScrollView slideShow属性

  • Post category:jquery

以下是关于 jQWidgets jqxScrollView 组件中 slideShow 属性的详细攻略。

jQWidgets jqxScrollView slideShow 属性

jQWidgets jqxScrollView 组件的 slideShow 属性用于设置滚动视图是否自动播放。

语法

// 获取 slideShow 属性值
slideShow = $('#scrollView').jqxScrollView('slideShow');

// 设置 slideShow 属性值
$('#scrollView').jqxScrollView({ slideShow: true });

参数

  • slideShow():无参数,用于获取 slideShow 属性值。
  • slideShow):value 为 Boolean 类型,表示设置的 slideShow 属性值。

示例

以下两个示例演示了如何使用 slideShow 属性。

示例 1

// 属性值
var slideShow = $('#scrollView').jqxScrollView('slideShow');

// 设置 slideShow 属性值
$('#scrollView').jqxScrollView({ slideShow: true });

在示例 1 中,我们使用 slideShow() 方法获取了 slideShow 属性值,并使用 slideShow(value) 方法将 slideShow 属性值设置为 true。

示例 2

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>jQxScrollView SlideShow Property</title>
    <link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/jqx.base.css" type="text/css" />
    <script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jquery-3.5.1.min.js"></script>
    <script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jqxcore.js"></script>
    <script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jqxbuttons.js"></script>
    <script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jqxscrollview.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $('#scrollView').jqxScrollView({
                width: 300,
                height: 200,
                showButtons: true,
                slideShow: true,
                theme: 'energyblue'
            });

            $('#startButton').click(function () {
                $('#scrollView').jqxScrollView('start');
            });

            $('#stopButton').click(function () {
                $('#scrollView').jqxScrollView('stop');
            });
        });
    </script>
</head>
<body>
    <div id="scrollView">
        <div><img src="https://jqwidgets.com/public/jqwidgets/styles/images/slider1.jpg" /></div>
        <div><img src="https://jqwidgets.com/public/jqwidgets/styles/images/slider2.jpg" /></div>
        <div><img src="https://jqwidgets.com/public/jqwidgets/styles/images/slider3.jpg" /></div>
        <div><img src="https://jqwidgets.com/public/jqwidgets/styles/images/slider4.jpg" /></div>
    </div>
    <button id="startButton">Start SlideShow</button>
    <button id="stopButton">Stop SlideShow</button>
</body>
</html>

在示例 2 中,我们创建了一个滚动视图和两个按钮,分别用于开始和停止滚动视图的自动播放。当用户单击按钮时,start() 或 stop() 方法将被调用,以开始或停止滚动视图的自动播放。

注意事项

  • slideShow 属性用于设置滚动视图是否自动播放。
  • slideShow 属性通过 jqx 方法调用。
  • slideShow 属性可以与 jqxScrollView 方法一起使用。

总之,slideShow 属性用于设置滚动视图是否自动播放。以上两个示例演示了如何使用 slideShow 属性。