欢迎访问服务器技术网-www.fuwuqijishu.com

Style backgroundAttachment 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 30次浏览 0个评论 扫描二维码
文章目录[隐藏]

Style backgroundAttachment 属性

Style 对象


定义和用法

backgroundAttachment 属性设置或返回背景图像是否固定或者随着页面的其余部分滚动。

语法

设置 backgroundAttachment 属性:

Object.style.backgroundAttachment=”scroll|fixed|local”

返回 backgroundAttachment 属性:

Object.style.backgroundAttachment

描述
scroll 背景随着元素一起滚动。这是默认。
fixed 背景保持固定。
local 背景随着元素的内容一起滚动。


浏览器支持

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


实例

实例

设置背景图像为固定(不滚动):

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
<style type=”text/css”>
body{
    background:#f3f3f3 url(‘img_tree.png’) no-repeat right top;
}
</style>
<script>
function displayResult(){
    document.body.style.backgroundAttachment=”fixed”;
}
</script>
</head>
<body>

<button type=”button” onclick=”displayResult()”>将背景图像设置为固定的</button>
<br>
<h1>Hello World!</h1>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>
<p>这是一个段落</p>

</body>
</html>


更多实例

滚动和固定之间切换
滚动和固定的 backgroundAttachment 之间的切换。


Style 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2321.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900