-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
67 lines (61 loc) · 2.3 KB
/
test.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<!-- encoding !! -->
<html>
<head>
<meta charset="UTF-8">
<title>Testing CSS</title>
<link rel='stylesheet' type='text/css' href='birds.css'>
<link rel='stylesheet' type='text/css' href='animation.css'>
<!-- <script type='javascript' src='birds.js'> -->
<!-- <script type='javascript' src='draganddrop.js'> -->
</head>
<body>
<div class='norhyme-container' id='test1'> <!-- making an omega (w) -->
<div class='combinator simple-combinator'>
<div class='rhyme'>
<svg style="height: 30px; position: relative; border: 0px none; margin: 0px; padding: 0px;" width="100%">
<line x1="0%" x2="100%" y1="75%" y2="75%"></line>
<line y1="75%" x1="0%" x2="100%" y2="25%"></line>
</svg>
</div><div class='norhyme-container'>
<div class='top'>
<div class='continue'></div><div class='turndown'></div>
</div><div class='bottom'>
<div class='continue'></div><div class='apply'></div>
</div>
</div><div class='continue'></div>
<div class='leftcircle'></div><div class='rightcircle'></div>
</div><div class='apply'> <!-- no whitespace between elements-->
<div class='leftcircle'></div>
<div class='rightcircle'></div>
</div>
</div>
<div class='combinator' style='' id='test2'>
<div class='rhyme'>
<svg style="height: 50px; position: relative; border: 0px none; margin: 0px; padding: 0px;" width="100%">
<line x1="0%" x2="100%" y1="75%" y2="75%"></line>
<line y1="75%" x1="0%" x2="100%" y2="25%"></line>
</svg>
</div><div class='norhyme-container'>
<div class='top'> <!-- first (top part of tree)-->
<div class='combinator simple-combinator'> <!-- I (simplest bird) -->
<div class='continue'></div>
<div class='leftcircle'></div>
<div class='rightcircle'></div>
</div><div class='turndown'></div> <!-- going to next apply -->
</div>
<div class='bottom'> <!-- bottom part of tree and apply-->
<div class='combinator simple-combinator'>
<div class='continue'></div>
<div class='leftcircle'></div>
<div class='rightcircle'></div>
</div><div class='apply'> <!-- no whitespace -->
<div class='leftcircle'></div>
<div class='rightcircle'></div>
</div>
</div>
</div><div class='continue'>
</div><div class='leftcircle'></div><div class='rightcircle'></div> <!-- no whitespace -->
</div>
</body>
</html>