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