2014-02-09 141 views
0

我是JavaScript新圖形編程新手,我正在嘗試Raphael庫。我試圖展示一個簡單的圓圈,但只獲得一個空白頁面。這裏是源代碼:Raphael JavaScript顯示空白頁

<!DOCTYPE html> 
<html lang="en"> 
<head> 
    <meta charset="utf-8"/> 
    <title> Raphael JS Test </title> 

     <script src="raphael.js"></script> 
     <script> 
      window.onload = function() { 
       var p = Raphael(10, 10, 400, 400); 
       p.circle(100, 100, 45); 
      } 
    </script> 
</head> 

<body> 
</body> 
</html> 

所有幫助非常感謝!謝謝!

回答

1

我認爲這個圓圈出現在頁面上,但它是白色的,在白色背景上有白色筆畫。你有沒有嘗試設置一種顏色

// Sets the fill attribute of the circle to red (#f00) 
circle.attr("fill", "#f00"); 

// Sets the stroke attribute of the circle to white 
circle.attr("stroke", "#fff"); 
+0

我都嘗試和既不工作。任何其他想法? – IntegrateAllDay

+0

我只是嘗試你的代碼,它的工作原理。你在使用哪個導航器?不要在控制檯中有任何錯誤? – Maxime

+0

我正在使用Safari並在Web檢查器中出現錯誤:ReferenceError:找不到變量:Raphael – IntegrateAllDay