jQWidgets jqxPopover animationType Property
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 jqxPopover is a small overlay of the content that is used for displaying secondary information of any element when it is clicked by a user.
The animationType property is used for setting or getting the type of animation for the specified jqxPopover widget. Its possible values are ‘none’, and ‘fade’.
Syntax:
For setting the animationType property.
$('#jqxPopover').jqxPopover({animationType: 'fade'});
For getting the animationType property.
var arrowOffsetValue = $('#jqxPopover').jqxPopover('animationType');
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/jqxpopover.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
Example: The below example illustrates the jQWidgets jqxPopover animationType property. In the below example, the value of the animationType property has been set to ‘fade’.
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/jqxpopover.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqx-all.js" > </ script > </ head > < body > < center > < h1 style = "color:green;" > GeeksforGeeks </ h1 > < h3 > jQWidgets jqxPopover animationType Property</ h3 > < div id = 'jqx_Popover' > < center > GeeksforGeeks </ center > </ div > < input type = "button" style = "margin:28px;" id = "button_for_Popover" value = "Toggle the Popover" /> < input type = "button" style = "margin: 65px;" id = "button_for_animationType" value = "Value of the animationType property" /> < div id = "log" ></ div > < script type = "text/javascript" > $(document).ready(function () { $("#jqx_Popover").jqxPopover({ width: 180, height: 70, animationType: 'fade', theme: 'energyblue', selector: $("#button_for_Popover"), title: 'Company_Name' }); $("#button_for_Popover").jqxButton({ width: 200, theme: 'energyblue' }); $("#button_for_animationType").jqxButton({ width: 300, theme: 'energyblue' }); $('#button_for_animationType') .jqxButton().click(function () { var Value_of_animationType = $('#jqx_Popover').jqxPopover('animationType'); $("#log").html((Value_of_animationType)); }) }); </ script > </ center > </ body > </ html > |
Output:
Please Login to comment...