html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- Created by night_cafe -->
<!DOCTYPE html>
<html>
<head>
<title>Temperature in San Francisco Line Chart</title>
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/d3@5.6.0/dist/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/4.1.1/d3.min.js"></script>
<script src="https://unpkg.com/d3@5.9.2/dist/d3.min.js"></script>
</head>
<body id="body">
<svg id="example" width="960" height="500" onmousemove="RedLine(event,1)" ontouchmove="RedLine(event,2)"></svg>
<script src="bundle.js"></script>
<script>
var div=document.createElement("div");
document.getElementById("body").appendChild(div);
div.style=`
position:absolute;
top:79px;
left:99px;
height :350px;
width:1px;
background-color:red;
`;
var exam=document.getElementById("example");
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
/* Created by night_cafe */
body {
user-select:none;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by night_cafe
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run