代码编辑器:
x
1
<style>
2
div{
3
background-image: url('/static/i/javascript/basic/img_tree.png');
4
background-repeat: no-repeat;
5
width: 400px;
6
height: 400px;
7
border: 1px solid #000000;
8
}
9
</style>
10
<script>
11
function displayResult(){
12
document.getElementById("div1").style.backgroundPosition="center bottom";
13
}
14
</script>
15
<button type="button" onclick="displayResult()">修改背景图像位置</button>
16
<br>
17
<div id="div1">
18
</div>