-4
背景を固定して、この特定のコードでスクロールしないようにするにはどうすればよいですか?このコードで私の背景を修正するにはどうすればよいですか?
私はすでにbody.setAttribute( "backgroundAttachment"、 "fixed");を試しましたが、動作しませんでした。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script>
<!-- Activate cloaking device
var randnum = Math.random();
var inum = 5;
// Change this number to the number of images you are using.
var rand1 = Math.round(randnum * (inum-1)) + 1;
images = new Array
images[1] = "bf1.jpg"
images[2] = "fifa17.jpg"
images[3] = "rocketleague.jpg"
images[4] = "civ6.jpg"
images[5] = "infinitewarfare.png"
// Ensure you have an array item for every image you are using.
var image = images[rand1]
// Deactivate cloaking device -->
</script>
</head>
<body>
<script>
<!-- Activate cloaking device
//document.write('<body background="' + image + '" text="white">');document.body.style.backgroundAttachment = "fixed";
var body=document.querySelector("body");
body.setAttribute("background", image);
body.setAttribute("text", "white");
body.setAttribute("backgroundAttachment", "fixed");
// Deactivate cloaking device -->
</script>
<img src="RANDOM-IMAGE-TO-MAKE-IT-POSSIBLE-TO-SCROLL.png" style="position:absolute; opacity:0.5; TOP:122px; LEFT:140px; width: 1000px; height: 1400px; object-fit: cover;" align="middle">
</body>
</html>
によって最終的な答え[css_positioning(http://www.w3schools.com/css/css_positioning.asp ) –
なぜdownvotes?そのちょうど質問 – Jip1912
@KevinKloet私はこのコードで動作するようにすることはできません – Jip1912