前端JavaScript-设置背景图片位置
2019-05-15 本文已影响7人
560b7bb7b879
代码实例如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>web前端学习交流扣qun:731771211 志同道合者进</title>
<style>
#antzone{
width:309px;
height:99px;
}
</style>
<script>
window.onload=function(){
var obt=document.getElementById("bt");
var odiv=document.getElementById("antzone");
odiv.style.backgroundImage="url('mytest/demo/mybg.png')";
odiv.style.backgroundRepeat ="no-repeat"
obt.onclick=function(){
odiv.style.backgroundPosition='103px 33px';
}
}
</script>
</head>
<body >
<div id="antzone"></div>
<input type="button" id="bt" value="查看效果"/>
</body>
</html>
背景图片309x99,分隔为9份,每一份的长宽分别是103px和33px。
点击按钮可以设置背景图片的定位位置,第一个参数用于水平方位,第二个参数用于垂直方位。
更多细节可以在搜索引擎查找backgroundPosition,这里不多介绍了。