下面的代碼只是畫了一個圓,請問老師,如何設置能讓這個圓的背景色與其他的地方的背景色不一樣?謝謝
<style>
span{position:absolute; color: red}
</style>
<script>
var showCircle = function() {
var PI = Math.PI;
return {
draw: function(r, _x, _y) {
// 獲得x y坐標
var x, y;
for(var i = 0; i < 360; i += 6) {
x = Math.cos(PI / 180 * i) * r + _x;
y = Math.sin(PI / 180 * i) * r + _y;
var O = document.createElement('span');
O.appendChild(document.createTextNode('.'));
document.body.appendChild(O);
O.style.left = x + 'px';
O.style.top = y + 'px';
}
}
}
}();
showCircle.draw(100, 400, 200);
</script>
用html canvas
http://www.jb51.net/html5/260714.html