Files
d3-force-simulation-test/index.html

28 lines
662 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.node {
stroke: #fff;
stroke-width: 1.5px;
opacity: 0.5;
}
.link {
stroke: #999;
stroke-opacity: .6;
}
</style>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.2/d3.min.js" defer></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.2/d3.js" defer></script>
<script src="./script.js" defer></script>
</head>
<body>
</body>
</html>