HTML DOM backgroundRepeat 属性

定义和用法

backgroundRepeat 属性设置背景图像是否及如何重复。

语法:

  1. Object.style.backgroundRepeat=repeat_value
参数 描述
repeat 默认。背景图像将在垂直方向和水平方向重复。
repeat-x 背景图像将在水平方向重复。
repeat-y 背景图像将在垂直方向重复。
no-repeat 背景图像将仅显示一次。

实例

本例仅在 y 轴重复背景图像:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. body
  5. {
  6. background-color:#FFCC80;
  7. background-image:url(bgdesert.jpg);
  8. }
  9. </style>
  10. <script type="text/javascript">
  11. function changeRepeat()
  12. {
  13. document.body.style.backgroundRepeat="repeat-y";
  14. }
  15. </script>
  16. </head>
  17. <body>
  18.  
  19. <input type="button" onclick="changeRepeat()"
  20. value="Repeat background-image only on the y-axis" />
  21.  
  22. </body>
  23. </html>