-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (21 loc) · 873 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Gradient Creator</title>
<link rel="stylesheet" type="text/css" href="css/spectrum.css">
<link rel="stylesheet" type="text/css" href="css/gradientcreator.css">
</head>
<body>
<div>This code is licensed MIT. More info/source: <a href="https://github.com/Squarific/GradientCreator">https://github.com/Squarific/GradientCreator</a></div>
<div id="gradientcreator"></div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/spectrum.js"></script>
<script type="text/javascript" src="js/GradientCreator.js"></script>
<script type="text/javascript">
var gradientCreator = new GradientCreator(document.getElementById("gradientcreator"));
gradientCreator.addEventListener("change", function (event) {
console.log(event);
});
</script>
</body>
</html>