Open In App

jQWidgets jqxScrollView animationDuration Property

Last Updated : 24 Nov, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is used for representing a widget that is used to view content that is wider than the visible area outlined by the screen of the device. Here particular items are chosen using drag movements or clicking/tapping on the buttons at the bottom of the jqxScrollView.

The animationDuration property is used for setting or getting the animation duration that starts when the current page is changed.

Syntax:

  • For setting the animationDuration property:

    $("#jqxScrollView").jqxScrollView({ 
        animationDuration: 4000
    });
  • For getting the animationDuration property:

    var animationDuration = $('#jqxScrollView')
        .jqxScrollView('animationDuration');

Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder.

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/>
<script type=”text/javascript” src=”scripts/jquery.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>

Example: The below example illustrates the jQWidgets jqxScrollView animationDuration property. In the below example, the value for the animationDuration property has been set to 4000.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" 
          href="jqwidgets/styles/jqx.base.css"
          type="text/css"/>
    <script type="text/javascript" 
            src="scripts/jquery.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxcore.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxbuttons.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxscrollview.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqx-all.js">
    </script>
</head>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
        <h3>
            jQWidgets jqxScrollView animationDuration Property
        </h3>
        <div id='jqx_Scroll_View'>
            <div style="background-color: #006400">
                First Screen
            </div>
            <div style="background-color: #FF0000">
                Second Screen
            </div>
        </div>
        <input type="button" style="margin: 28px;" 
               id="button_for_animationDuration"
            value="Navigate to the next page"/>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#jqx_Scroll_View").jqxScrollView({
                    width: 300,
                    height: 200,
                    animationDuration: 4000
                });
                $("#button_for_animationDuration").jqxButton({
                    width: 250
                });
                $("#button_for_animationDuration").jqxButton().
                    click(function () {
                        $('#jqx_Scroll_View').
                            jqxScrollView(
                                'forward');
                    });
            });
        </script>
    </center>
</body>
  
</html>


Output:

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads