背景

UK[?b?kgra?nd] US[?b?k?ɡra?nd]

n. (絵畫(huà)など) 背景; 背景色; 背景情報(bào); サウンドトラック

複數(shù)形: 背景

attachment

UK[??t?t?m?nt] US[??t?t?m?nt]

n. (メールで送信) 添付ファイル、添付ファイル; 添付ファイル、添付ファイル; 財(cái)産の差し押さえ<法律> 逮捕、差し押さえ (人、財(cái)産)

複數(shù)形:添付ファイル

JavaScriptのbackgroundAttachmentProperty 構(gòu)文

機(jī)能:背景畫(huà)像を固定するか、ページの殘りの部分と一緒にスクロールするかを設(shè)定します。

構(gòu)文: Object.style.backgroundAttachment=scroll|fixed

コメント: 背景畫(huà)像が使用できない場(chǎng)合は、使用可能な背景色を設(shè)定してください。利用可能になり、ページに優(yōu)れた視覚効果が得られます。

JavaScriptのbackgroundAttachmentProperty 例

<html>
<head>
<style type="text/css">
body
{
background-color="#FFCC80";
background-image:url(http://img.php.cn/upload/article/000/005/656/5af270fd37755429.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>

インスタンスの実行 ?

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します