-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-mindmap.php
98 lines (83 loc) · 2.9 KB
/
page-mindmap.php
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
get_header(); ?>
<script>
var useWheelNav = true
</script>
<main id="main" role="main">
<div id="tag-cloud"></div>
<div id="screen" class="phi-centered">
<span class="ripple"></span>
<div id="circle-mask">
<div id="screen-image-wrap">
<div id="screen-image-header" class="screen-caption">
<div id="screen-image-title"></div>
<div id="screen-image-caption"></div>
</div>
<div id="screen-image-container"></div>
<div id="screen-image-footer" class="screen-caption">
<div id="screen-image-description"></div>
</div>
</div>
<div id="bg-video">
<video id="video" controls="true " autoplay="autoplay" muted="muted" preload="auto" loop="loop">
<source src="#" type="video/mp4">
</video>
</div>
<article id="wheel-menu-content" class="slideshow"></article>
<article id="projects-content" class="slideshow"></article>
<!-- -->
<!--masks contents above this svg-->
<svg id="circle-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"
preserveAspectRatio="xMidYMid slice">
<defs>
<mask id="mask" x="0" y="0" width="528.934px" height="394.314px">
<rect x="0" y="0" width="100%" height="100%" />
<circle class="cls-1" cx="500" cy="499" r="475" />
</mask>
</defs>
<rect x="0" y="0" width="100%" height="100%" />
</svg>
</div><!-- outer nav ring -->
<section id="wheel-nav">
<nav id="outer-ring">
<div id="outer-nav" class="wheelNav"></div>
</nav>
<nav id="inner-ring">
<!-- inner nav ring -->
<div id="inner-nav" class="wheelNav"></div>
</nav>
<nav id="inner-subring">
<!-- inner subnav ring -->
<div id="inner-subnav" class="wheelNav"></div>
</nav>
</section>
<section id="related"></section>
<div id="slider-wrap">
<div id="up-arrow" class="arrow"><?php include "svg/arrow-key.svg";?></div>
<div id="slider"></div>
<div id="down-arrow" class="arrow"><?php include "svg/arrow-key.svg";?></div>
</div>
</div>
<div id="mindmap">
<ul>
<li><a href="index.html">Main Topic</a>
<ul>
<li><a href="index.html" size=50 color="green">Sub 1</a>
<ul>
<li><a href="index.html" size=100 color="green">Article 1</a></li>
<li><a href="index.html" size=-50 color="purple">Article 2</a></li>
<li><a href="index.html" size=50>Article 3</a></li>
<li><a href="index.html">Article 4</a></li>
</ul>
</li>
<li><a href="index.html">Sub 2</a></li>
<li><a href="index.html">Sub 3</a></li>
<li><a href="index.html">Sub 4</a></li>
<li><a href="index.html" size=-10>Sub 5</a></li>
</ul>
</li>
</ul></div>
</main>
<?php
get_footer();
?>