-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (91 loc) · 5.81 KB
/
index.html
File metadata and controls
129 lines (91 loc) · 5.81 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
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tag -->
<meta charset="utf-8">
<!-- Title -->
<title> Color Palettes </title>
<!-- Link CSS Stylesheet -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- D3.js Source -->
<script src="https://d3js.org/d3.v5.min.js"></script>
</head>
<body style="margin: 20px; text-align:center;">
<!-- Title -->
<h1 style = "text-align:center; color:slategray;"><bold> Your Favorite Post-Impressionist Artists and the Color Palettes They Use </bold></h1>
<!-- Insights -->
<p style="text-align: center">
Post-Impressionism was a 19th century art movement that rejected the naturalism of Impressionism. Post-Impressionist painters tended to favor
a more expressive use of color and form when compared to artists of other genres. We discovered that Post-Impressionism was primarily made up of
French, male artists from the years 1886 and 1905. Still, we found and included paintings created after 1905, female artists, and artists from
various ethnic and national backgrounds. <br><br> This visualization aims to facilitate the comparing and contrasting
of color palettes among Post-Impressionist artists.
</p>
<!-- Tooltip Div -->
<div id="tooltip" class="hidden"> <!-- hidden initially -->
<!-- Color palette rectangle svg -->
<svg width="200" height="50" class="center" id="pal"></svg>
<!-- Painting image svg -->
<svg width="200px" height="200px" class="center" id="image"></svg>
<!-- Painting title paragraph -->
<p style="text-align: center" width=200px> "<span id="name"> Painting Name </span>" </p>
</div>
<!-- Painter Name Tooltip Div -->
<div id="pTooltip" class="hidden"> <!-- hidden initially -->
<!-- Painting title paragraph -->
<p style="text-align: center" width=200px> <span id="pName"> Painter Name </span> </p>
</div>
<!-- Link D3 Code -->
<main>
<div id="svg-container"></div>
<div id="compare-container">
<div id="compare-1" class="compare"></div>
<div id="compare-2" class="compare"></div>
</div>
</main>
<!-- <script src="prototype.js"></script> -->
<script src="./prototype-v5.js"></script>
<!-- Submission Info -->
<div id="submission">
<h4 style="text-align: center"> <br> Created by </h4>
<p style="text-align: center"> Mona Zhao (yzhao172@ucsc.edu) <br> Leon Stoeber (lstoeber@ucsc.edu) <br> Matthew Chen (mchen146@ucsc.edu) <br> Diana Flores (dgflores@ucsc.edu) <br> Maria Penno (mpenno@ucsc.edu) <br> in collaboration with Suresh K Lodha, Jacob Low, and Omkar Ghanekar </p>
<p style="text-align: center"> <a href="https://github.com/leonstoeber/CSE-163-Fall-2022-Final-Project"> Github Link </a> <br> <br> </p>
<h4 style="text-align: center"> Designed for </h4>
<p style="text-align: center"> CSE 163: Data Programming for Visualization, Fall 2022 </p> <br>
<!-- Four source columns -->
<div class="row">
<div class="column">
<b>Files Submitted</b> <br>
<p>index.html<br>style.css<br>prototype-v5.js<br>raw-data.csv<br>painters/<br>paintings/<br><br></p>
</div>
<div class="column">
<b>Data Sources</b> <br>
<p>
<a href="https://www.wikiart.org/"> WikiArt Visual Art Encyclopedia </a> <br>
<a href="https://imagecolorpicker.com/en">IMAGECOLORPICKER</a>
</p>
</div>
<div class="column">
<b>Visualization sources</b> <br>
<p>
<a href="https://observablehq.com/@d3/clustered-bubbles?collection=@d3/d3-force">Clustered Bubbles</a> <br>
<a href="https://bl.ocks.org/ctufts/f38ef0187f98c537d791d24fda4a6ef9">Clustered Force Layout Bubble Chart</a>
</p>
</div>
<div class="column">
<b>Code Sources</b> <br>
<p>
<a href="https://observablehq.com/@d3/clustered-bubbles?collection=@d3/d3-force"> Clustered Bubbles </a> <br>
<a href="https://bl.ocks.org/ctufts/f38ef0187f98c537d791d24fda4a6ef9"> Clustered Force Layout Bubble Chart </a> <br>
<a href="https://sureshlodha.github.io/CMPS263_Winter2018/CMPS263FinalProjects/ChineseHistory/index.html"> The Rise and Fall of Chinese History: 221 BC to 2018 AC </a> <br>
<a href="https://d3-wiki.readthedocs.io/zh_CN/master/Force-Layout/"> D3 Wiki Force Layout </a> <br>
<a href="https://github.com/d3/d3-force"> d3-force </a> <br>
<a href="https://github.com/d3/d3-quadtree"> d3-quadtree </a>
<a href="https://observablehq.com/@mohit21go/force-directed-graph"> Force-Directed Graph with Image in circle as Node Label </a>
<a href="https://www.geeksforgeeks.org/program-change-rgb-color-model-hsv-color-model/">RGB to HSV</a>
</p>
</div>
</div>
</div>
</body>
</html>