我只是想开始学习 D3 并在 Rails 中有一个项目来玩它。
我有一个正在运行的铁路服务器 - localhost - 我已经在 index.html 中写了这个:
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body { font: 12px Arial;}
path {
stroke: steelblue;
stroke-width: 2;
fill: none;
}
.axis path, .axis line {
fill: none;
stroke: grey;
stroke-width: 1; shape-rendering: crispEdges;
}
</style>
<body>
<p> Hi i am here</p>
<script src="http://d3js.org/d3.v3.min.js"></script>
</body>
现在我可以从那里输入并在浏览器中看到一些东西的最基本的东西是什么?