我想在wordpress下放一个画布演示文章填充页面。
如何在wordpress帖子下包含它。
我尝试在视觉和文字下添加它,但似乎不起作用。
答案 0 :(得分: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);
您可能需要确保body和html的css高度设置为100%