HTML DOM 快速導覽 - 樣式設定的屬性 backgroundRepeat

CSS 樣式表 (cascading style sheets) 的 background-repeat 性質 (property) 可控制 HTML 元素 (element) 的背景圖片是否重複,亦可由 JavaScript 程式取得元素物件,再用 style 的屬性 (attribute) backgroundRepeat 進行設定。



backgroundRepeat 有以下的設定值
  • repeat
  • repeat-x
  • repeat-y
  • no-repeat


舉例如下
function run03() {
    document.body.style.backgroundRepeat = "repeat";
}

function run04() {
    document.body.style.backgroundRepeat = "repeat-x";
}

function run05() {
    document.body.style.backgroundRepeat = "repeat-y";
}

function run06() {
    document.body.style.backgroundRepeat = "no-repeat";
}

/* 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:style006.js
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 */


此例 run03() 將背景圖片設定為重複
function run03() {
    document.body.style.backgroundRepeat = "repeat";
}


run04() 設定為水平重複
function run04() {
    document.body.style.backgroundRepeat = "repeat-x";
}


run05() 設定為垂直重複
function run05() {
    document.body.style.backgroundRepeat = "repeat-y";
}


run04() 設定為不重複
function run06() {
    document.body.style.backgroundRepeat = "no-repeat";
}


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="style006.js" type="text/javascript"></script>
<style>
body {
    background-image: url(example.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
</style>
</head>
<body>
<input type="button" value="repeat" onclick="run03();">
<input type="button" value="repeat-x" onclick="run04();">
<input type="button" value="repeat-y" onclick="run05();">
<input type="button" value="no-repeat" onclick="run06();">
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:style006.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


瀏覽器 (browser) 開啟,預設不重複背景圖片



點擊 repeat-x ,背景圖片就會在水平軸重複出現



中英文術語對照
CSS 樣式表cascading style sheets
性質property
元素element
屬性attribute
瀏覽器browser


您可以繼續參考
CSS 範例

樣式設定物件 style


相關目錄
HTML DOM 快速導覽
JavaScript 教材
首頁


參考資料
https://developer.mozilla.org/en/DOM/CSS
https://developer.mozilla.org/en/CSS/background-repeat

沒有留言: