以下是关于 jQWidgets jqxScrollView 组件中 moveThreshold 属性的详细攻略。
jQWidgets jqxScrollView moveThreshold 属性
jQWidgets jqxScrollView 组件的 moveThreshold 属性用于设置滚视图的移动阈值。
语法
// 获取 moveThreshold 属性值
moveThreshold = $('#scrollView').jqxScrollView('moveThreshold');
// 设置 moveThreshold 属性值
$('#scrollView').jqxScrollView({ moveThreshold: 50 });
参数
- moveThreshold():无参数,用于获取 moveThreshold 属性值。
- moveThreshold):value 为 Number 类型,表示设置的 moveThreshold 属性值。
示例
以下两个示例演如何使用 moveThreshold 属性。
示例 1
// 属性值
var moveThreshold = $('#scrollView').jqxScrollView('moveThreshold');
// 设置 moveThreshold 属性值
$('#scrollView').jqxScrollView({ moveThreshold: 50 });
在示例 1 中,我们使用 moveThreshold() 方法获取了 moveThreshold 属性值,并使用 moveThreshold(value) 方法将 moveThreshold 属性值设置为 50。
示例 2
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQxScrollView MoveThreshold 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',
moveThreshold: 50
});
$('#setMoveThresholdButton').click(function () {
$('#scrollView').jqxScrollView({ moveThreshold: 100 });
});
$('#resetMoveThresholdButton').click(function () {
$('#scrollView').jqxScrollView({ moveThreshold: 50 });
});
});
</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="setMoveThresholdButton">Set Move Threshold to 100</button>
<button id="resetMoveThresholdButton">Reset Move Threshold to 50</button>
</body>
</html>
在示例 2 中,我们创建了一个滚动视图和两个按钮,分别用于将滚动视图的移动阈值设置为 100 和 50。当用户单击按钮时,moveThreshold() 方法将被用,将滚动视图的移动阈值设置为指定的值。
注意事项
- moveThreshold 属性用于设置滚动图的移动阈值。
- moveThreshold 属性通过 jqxScrollView 方法调用。
- moveThreshold 属性可以与 jqxScrollView 方法一起使用。
总之,moveThreshold 属性用于设置滚动视图的移动阈值。以上两个示例演示了如何使用 moveThreshold 属性。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:jQWidgets jqxScrollView moveThreshold属性 - Python技术站