欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM backgroundPositionY 屬性

HTML DOM Style 對(duì)象參考手冊

定義和用法

backgroundPositionY 屬性設(shè)置 background-image 的垂直位置。

語法:

Object.style.backgroundPositionY=position
參數(shù) 描述
  • top
  • center
  • bottom
垂直位置。
y% 垂直位置。Top 是 0%。Bottom 是 100%
ypos 垂直位置。Top 是 0。單位是像素 (0px) 或其他 CSS 單位。

實(shí)例

下面的例子改變 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>

HTML DOM Style 對(duì)象參考手冊