jQuery UI由GUI小部件,视觉效果和使用jQuery,CSS和HTML实现的主题组成。 jQuery UI非常适合为网页构建UI接口。 jQueryUI通过滑块小部件为我们提供了一个滑块控件。滑块可帮助我们在给定范围内获得一定的值。在本文中,我们将看到如何为滑块设置动画。设置为true时,动画选项会在您直接单击滑块轴上的任何点时创建动画效果
用法:
$(".selector").slider( { animate:value } );
参数:此选项接受三个参数,如下所述:
- boolean:如果设置为true,则将为滑块设置动画。默认情况下,该值为false
- string:用于设置滑块光标速度的字符串值。可用值为慢速,正常,快速。
- number:动画的持续时间(以毫秒为单位)。
CDN链接:首先,添加项目所需的jQuery UI脚本。
<link href = “https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css” rel = “stylesheet”>
<script src = “https://code.jquery.com/jquery-1.10.2.js”></script>
<script src = “https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>
范例1:在此示例中,我们将使用布尔值。
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
rel="stylesheet"/>
<script src=
"https://code.jquery.com/jquery-1.10.2.js">
</script>
<script src=
"https://code.jquery.com/ui/1.10.4/jquery-ui.js">
</script>
<script>
$(function () {
$("#gfg").slider({ animate:true });
});
</script>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>jQuery UI | slider animate option</h2>
<div id="gfg"></div>
</body>
</html>
输出:
范例2:在此示例中,我们将使用字符串值。
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
rel="stylesheet"/>
<script src=
"https://code.jquery.com/jquery-1.10.2.js">
</script>
<script src=
"https://code.jquery.com/ui/1.10.4/jquery-ui.js">
</script>
<script>
$(function () {
$("#gfg").slider({ animate:"fast" });
});
</script>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>jQuery UI | slider animate option</h2>
<div id="gfg"></div>
</body>
</html>
输出:
范例3:在此示例中,我们将使用数字值。
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
rel="stylesheet"/>
<script src=
"https://code.jquery.com/jquery-1.10.2.js">
</script>
<script src=
"https://code.jquery.com/ui/1.10.4/jquery-ui.js">
</script>
<script>
$(function () {
$("#gfg").slider({ animate:1000 });
});
</script>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>jQuery UI | slider animate option</h2>
<div id="gfg"></div>
</body>
</html>
输出:
相关用法
- jQuery UI Resizable animate用法及代码示例
- jQuery UI Slider value用法及代码示例
- jQuery UI Slider values用法及代码示例
- jQuery UI Slider range用法及代码示例
- jQuery UI Slider max用法及代码示例
- jQuery UI Slider disabled用法及代码示例
- jQuery UI Slider min用法及代码示例
- jQuery UI Slider orientation用法及代码示例
- JQuery animate()用法及代码示例
- SVG <animate>用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 jQuery UI Slider animate Option。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。