×
参考手册概览

JavaScript 对象

JavaScript Array 对象手册 JavaScript Array 对象JavaScript Boolean 对象JavaScript Date 对象JavaScript Math 对象JavaScript Number 对象JavaScript String 对象JavaScript RegExp 对象JavaScript 全局属性/函数JavaScript 运算符

Browser 对象

Window 对象Navigator 对象Screen 对象History 对象Location 对象

DOM 对象

HTML DOM DocumentHTML DOM 元素对象HTML DOM 属性对象HTML DOM 事件对象

HTML 对象

<a><area><audio><base><blockquote><body><button><canvas><col><colgroup><datalist><del><details><dialog><embed><fieldset><form><iframe><frameset ><img><ins><input> - button<input> - checkbox<input> - color<input> - date<input> - datetime<input> - datetime-local<input> - email<input> - file<input> - hidden<input> - image<input> - month<input> - number<input> - range<input> - password<input> - radio<input> - reset<input> - search<input> - submit<input> - text<input> - time<input> - url<input> - week<keygen><link><label><legend><li><map><menu><menuItem><meta><meter><object><ol><optgroup><option><param><progress><q><script><select><source><style><table><td><th><tr><textarea><title><time><track><video>

Style backgroundPosition 属性


HTML DOM Style 对象HTML DOM Style 对象


定义和用法

backgroundPosition 属性设置或返回元素的背景图像的位置。

语法

设置 backgroundPosition 属性:

Object.style.backgroundPosition="position"

返回 backgroundPosition 属性:

Object.style.backgroundPosition

提示:backgroundPosition 属性的默认值是:0% 0%。

描述
top left
top center
top right
center left
center center
center right
bottom left
bottom center
bottom right
如果仅指定一个关键字,其他值将是 "center"。
x% y% x 值表示水平位置,y 值表示垂直位置。左上角是 0% 0%。右下角是 100% 100%。如果仅指定一个值,其他值将是 50%。
xpos ypos x 值表示水平位置,y 值表示垂直位置。左上角是 0 0。单位可以是像素(0px 0px)或任何其他的 CSS 单位。如果仅指定一个值,其他值将是 50%。您可以混合使用 % 和单位。
inherit 背景位置属性的设置从父元素继承。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 backgroundPosition 属性。

注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有规定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。


实例

实例

更改背景图像的位置:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>外唐教程网(waitang.com)</title>
<style>
div{
    background-image: url('img_tree.png');
    background-repeat: no-repeat;
    width: 400px;
    height: 400px;
    border: 1px solid #000000;
}
</style>
<script>
function displayResult(){
    document.getElementById("div1").style.backgroundPosition="center bottom";
}
</script>
</head>
<body>

<button type="button" onclick="displayResult()">修改背景图像位置</button>
<br>
<div id="div1">
</div>

</body>
</html>

尝试一下 »

HTML DOM Style 对象HTML DOM Style 对象


分类导航

关注微信下载离线手册

bootwiki移动版 bootwiki
(群号:472910771)