-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
yuki tamazawa
committed
Dec 3, 2019
1 parent
80509c8
commit a09bf98
Showing
5 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html lang="ja"> | ||
|
||
<head> | ||
<link rel="stylesheet" href="https://mbraak.github.io/jqTree/jqtree.css"> | ||
<script src="./bundle.js"></script> | ||
<meta charset="utf-8"> | ||
<title>RIB Tree Viewer</title> | ||
</head> | ||
<style> | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Create two equal columns that floats next to each other */ | ||
.column { | ||
float: left; | ||
width: 50%; | ||
padding: 10px; | ||
height: 300px; /* Should be removed. Only for demonstration */ | ||
} | ||
|
||
/* Clear floats after the columns */ | ||
.row:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
</style> | ||
|
||
<body> | ||
|
||
<div class="row"> | ||
<div class="column" id="body"></div> | ||
<div class="column"> | ||
<img id="capture" width="100%" /> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters