小码哥的IT人生

HTML DOM backgroundPositionY 属性

JavaScript基础 2022-06-08 14:24:30小码哥的IT人生shichen

HTML DOM backgroundPositionY 属性

定义和用法

backgroundPositionY 属性设置 background-image 的垂直位置。

语法:

Object.style.backgroundPositionY=position
参数 描述
  1. top
  2. center
  3. bottom
垂直位置。
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

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024