雖然簡單的主代碼在其他項目中工作,但我只是在主類中獲得一個簡單的畫布,這只是Raphael部分正在取代前者代碼:jQuery和Raphael在JS-「Classes」中
$(document).ready(function(){ new Main(); });
$.Class
("Main",
{
init:
function()
{ // Initialize the canvas.
var paper = Raphael("canvas",800,500);
paper.circle(100, 100, 50);
},
});
沒有main-「幀」 everything's精,當然......現在真的不知道了什麼可能是錯誤的星座...
謝謝你的閱讀。
你有一個鏈接到'$ .Class'插件嗎? –
* facepalm * ...你是對的...我剛剛複製了jquery庫...非常感謝你! – user2007630