HTML DOM backgroundPositionY 属性
JavaScript基础 2022-06-08 14:24:30小码哥的IT人生shichen
HTML DOM backgroundPositionY 属性
定义和用法
backgroundPositionY 属性设置 background-image 的垂直位置。
语法:
Object.style.backgroundPositionY=position
参数 | 描述 |
---|---|
|
垂直位置。 |
y% | 垂直位置。Top 是 0%。Bottom 是 100% |
ypos | 垂直位置。Top 是 0。单位是像素 (0px) 或其他 CSS 单位。 |
实例
下面的例子改变 background-image 的垂直位置:
<html>
<head>
<style type="text/css">
body
{
background-color:#FFCC80;
background-image:url(bgdesert.jpg);
background-repeat:no-repeat
}
</style>
<script type="text/javascript">
function changePosition()
{
document.body.style.backgroundPositionY="bottom";
}
</script>
</head>
<body>
<input type="button" onclick="changePosition()"
value="Change background-image's y-position" />
</body>
</html>
TIY
完整实例【改变 background-image 的垂直位置】:
<html>
<head>
<style type="text/css">
body
{
background-color:#FFCC80;
background-image:url(/i/eg_bg_desert.jpg);
background-repeat:no-repeat;
background-attachment:fixed;
}
</style>
<script type="text/javascript">
function changePosition()
{
document.body.style.backgroundPositionY="bottom";
}
</script>
</head>
<body>
<input type="button" onclick="changePosition()" value="Change background-image's y-position" />
<p><b>Note:</b> For this to work in Mozilla, the background-attachment property must be set to "fixed".</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html