だから、私は私は以下のような順序で、Webページの背景色を変更することができ、それを作るしようとしている、これは解決する簡単な問題ではなく、とにかく...背景色を変更するにはどうすればよいですか?
ことを知っている:
red > yellow > green > blue > purple > pink > brown > red
hereをクリックすると、私のウェブページのためにやっていることをしているウェブページのデモが表示されます。
私はbody要素の上にいくつかのJavaScriptを使用することができると思う:
<html>
<body id="body" bgcolor="#FFFFFF">
<script>
var body = document.getElementById('body'); /* Get
the element with the id of 'body' */
/* I need some javascript to make the 'hex'
variable change accordingly, then call the setColor() with
the parameter as a string for the hex code to change the
background color */
function setColor(hex) {
body.setAttribute("bgcolor", hex); /* Set the
attribute bgcolor to the counter variable */
}
</script>
</body>
</html>
この方法では、書くことが少し長いですが、それは動作します!ありがとう! –
@BenStafford Sass関数またはMixinを使用して簡単にすることができます。 – Roy
私はこのサイトでこのような催眠出力を見たことがありません% - ) – CodingNinja