-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (93 loc) · 4.98 KB
/
index.html
File metadata and controls
121 lines (93 loc) · 4.98 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./style/output.css" rel="stylesheet">
<link href="./style/banner.css" rel="stylesheet">
<script src="scripts/d3.v7.min.js" type="text/javascript"></script>
<script src="scripts/banner.js" type="text/javascript"></script>
<script src="scripts/generateContent.js" type="text/javascript"></script>
</head>
<body>
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
<div class="relative flex items-end justify-between h-52">
<div class="flex-1 flex items-end justify-center sm:items-stretch sm:justify-start">
<div class="flex-shrink-0 flex items-end ">
<img class="block h-36 w-auto" src="img/logo.png" alt="Workflow">
<!-- <span class="text-xl">DataVis Lab</span> -->
</div>
<div class="flex items-end sm:block sm:ml-6 px-10">
<div class="flex h-36 space-x-4 items-end">
<a href="#" class="bg-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline" >Home</a>
<a href="team.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Team</a>
<a href="papers.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Publications</a>
<a href="software.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Software</a>
</div>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-3 max-w-7xl mx-auto px-8 pt-6 mb-2">
<div class="justify-self-bottom pt-10">
<div class="p-2">The DataVis Lab at <a href="http://www.clemson.edu/">Clemson University</a> focuses on the analysis and visualization of large,
multifaceted scientific data.
</div>
<div class="p-2">
Our research interests include:
<ul class="px-8 list-disc">
<li>Topological approaches for scientific visualization</li>
<li>Mesh processing for scientific data analysis</li>
<li>High performance computing for data visualization</li>
<li>Multivariate and ensemble data visualization</li>
</ul>
</div>
<div class="p-2">
We are also part of the <a href="https://computing.clemson.edu/vcl/">Visual Computing Lab</a> at Clemson University.
</div>
</div>
<div class="col-span-2">
<!-- Slideshow container -->
<div class="slideshow-container" >
<!-- Full-width images with number and caption text -->
<!-- <div class="mySlides fade">
<div class="numbertext text-amber-600 absolute right-0 ">1 / 3</div>
<div class="text text-amber-600 ">ASDASDASDAS</div>
<img src="img/banners/pres/Slide1.png" style="width:100%">
</div>
<div class="mySlides fade">
<div class="numbertext text-amber-600 absolute right-0 ">2 / 3</div>
<div class="text text-amber-600 ">ASDASDASDAS</div>
<img src="img/banners/pres/Slide2.png" style="width:100%">
</div>
<div class="mySlides fade">
<div class="numbertext text-amber-600 absolute right-0 text-amber-600">3 / 3</div>
<div class="text text-amber-600 ">ASDASDASDAS</div>
<img src="img/banners/actopo.png" style="width:100%">
</div> -->
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div class="slider-dot" style="text-align:center">
<!-- <span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span> -->
</div>
<script>
createSlider()
</script>
</div>
</div>
<div class="grid grid-cols-3 gap-4 max-w-7xl mx-auto p-2 sm:px-6 lg:px-8 mb-10">
<div id="news-content" class="col-span-3">
<span class="text-amber-600 text-2xl font-bold">NEWS</span>
</div>
<script>
generateNews()
</script>
</div>
</body>
</html>