backgroundAttachment 属性设置背景图像是否固定或者随着页面的其余部分滚动。
</>code
- Object.style.backgroundAttachment=scroll|fixed
提示:请设置一种可用的背景颜色,这样的话,假如背景图像不可用,页面也可获得良好的视觉效果。
本例设置在点击按钮后把背景图像设置为固定(不滚动):
</>code
- <html>
- <head>
- <style type="text/css">
- body
- {
- background-color="#FFCC80";
- background-image:url(bgdesert.jpg);
- }
- p
- {
- color:white;
- }
- </style>
- <script type="text/javascript">
- function changeAttachment()
- {
document.body.style.backgroundAttachment="fixed";
- }
- </script>
- </head>
- <body>
- <input type="button" onclick="changeAttachment()"
- value="Set background-image to be fixed" />
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- <p>This is a paragraph</p>
- </body>
- </html>
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号