所以,我知道這可能是一個簡單的問題需要解決,但無論如何...如何製作變色背景?
我試圖讓它在那裏我可以改變網頁的背景顏色,以便象下面這樣:
red > yellow > green > blue > purple > pink > brown > red
點擊here的網頁演示,做我想爲我的網頁做。
我想我可以在主體元素上使用一些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