Hintergrund
Englisch[?b?kgra?nd] Amerikanisch[?b?k?ɡra?nd]
n. (Gem?lde usw.) Hintergrund; Hintergrundfarbe; Hintergrundinformationen; Soundtrack
AnhangEnglisch[? ?t?t?m?nt]美[ ??t?t?m?nt]
n (per E-Mail gesendet) Anh?nge, Pf?ndung; Beschlagnahme von Eigentum <Gesetz> Beschlagnahme (Person, Eigentum)
Plural: Anh?nge
Javascript-HintergrundAttachment屬性 Syntax
Funktion: Legen Sie fest, ob das Hintergrundbild fest ist oder mit dem Rest der Seite scrollt.
Syntax: Object.style.backgroundAttachment=scroll|fixed
Hinweise: Bitte legen Sie eine verfügbare Hintergrundfarbe fest, damit die Seite auch gute visuelle Effekte erzielen kann, wenn das Hintergrundbild nicht verfügbar ist.
Javascript-HintergrundAttachment屬性 Beispiel
<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>
Instanz ausführen ?
Klicken Sie auf die Schaltfl?che ?Instanz ausführen“, um die Online-Instanz anzuzeigen