-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.25 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colorize</title>
<script src="colorize.js" ></script>
<script src="gradiantor.js" ></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="gradiantor"></div>
<script>
document.getElementById( "gradiantor" ).addEventListener( "click", function (e) {
e.stopPropagation();
/*
{
"id" : null,
"container" : "the container for widget(required)",
"value" : "linear-gradient(45deg,rgb(55, 192, 176) 0%,rgb(245, 155, 146) 100%)"
}
*/
var data = {
"id" : e.currentTarget.id,
"container" : document.getElementById( "gradiantor" ),
"value" : null
}
var gradiantor = new Gn8Gradiantor( data );
gradiantor.init().then( success => {
document.getElementById( "gradiantor" ).style.backgroundImage = success;
console.log( success );
},error => {} );
} );
</script>
</body>
</html>