1
我想將使用PDE編寫的草圖作爲網頁的背景。這可能嗎?使用草圖作爲背景的processing.js
我嘗試使用這個CSS代碼sketch.pde文件,但沒有喜悅:
html {
background: url(sketch.pde) no-repeat center center fixed;
}
更新
我設置畫布像這樣:
<canvas id="twit" data-processing-sources="twit.pde"
height="window.innerHeight-10"
width="window.innerWidth"
tabindex="0"
style="image-rendering">
</canvas>
而且然後使用-moz-element參考.css中的畫布:
{background: -moz-element(#twit) no-repeat;}
謝謝麻雀。你讓我走上正軌。我已經破解了它!原始問題中的代碼 – 2012-03-10 01:00:27