2015-07-11 45 views

回答

0

這對我有效。請注意我用我自己的服務器上的WordPress,上wordpress.com不

<canvas id="c" style="position: fixed; width: 100%; height: 100%; left: 0; top: 0; z-index: -1;"></canvas> 
<script> 
var gl = document.getElementById("c").getContext("webgl"); 
function render() { 
    gl.clearColor(Math.random(), 0, 0, 1); 
    gl.clear(gl.COLOR_BUFFER_BIT); 
    requestAnimationFrame(render); 
} 
requestAnimationFrame(render); 

您可能需要確保身體和HTML有自己的CSS設置高度爲100%

+0

對!不在wordpress.com的帖子。 –