-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 991 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
23
24
25
26
27
28
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="shufflecolor">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>shuffle color</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="shuffle-title">
<p>Your text: <input data-bind="value: inputText" /></p>
<p>Add rgb here: <input data-bind="value: initialRGB" /></p>
<p>MinusPlus factor: <input data-bind="value: initialFactor" /></p>
<div data-bind="text: inputText"></div>
<div data-bind="text: spectrum"></div>
</div>
</body>
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script type='text/javascript' src='js/knockout-3.3.0.js'></script>
<script type="text/javascript" src="js/PartyShuffleWords.js"></script>
<script type="text/javascript">
</script>
</html>