-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
171 lines (126 loc) · 5.56 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=no, initial-scale=1">
<title>AffectButton</title>
<!-- Use CDN versions of 3rd party resources to avoid clutter in our repository -->
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<!-- Include (minimalistic) style for this demo page -->
<link rel="stylesheet" href="css/mobile.css" />
<!-- Include the affectbutton widget -->
<script src="js/jquery.ui.affectbutton.min.js"></script>
<!-- <script src="js/jquery.ui.affectbutton.js"></script> -->
<!-- Register document ready callback -->
<script>
jQuery( function( $ ) {
if ( window.location.href.indexOf( 'index.html' ) === -1 ) {
window.location.href = 'index.html';
return;
}
$( '[data-role="navbar"]' ).navbar();
$( '[data-role="header"], [data-role="footer"]' ).toolbar();
$( document ).on( 'pagecontainerchange', function() {
var current = $( '.ui-page-active' ).jqmData( 'title' );
// Remove active class from nav buttons
$( '[data-role="navbar"] a.ui-btn-active' ).removeClass( 'ui-btn-active' );
// Add active class to current nav button
$( '[data-role="navbar"] a' ).each( function() {
if ( $( this ).text() === current ) {
$( this ).addClass( 'ui-btn-active' );
}
} );
} );
$.getJSON( 'style.json', function( style ) {
var $element = $( '#affectbutton' );
// Instantiate the affectbutton widget
$element.affectbutton( {
// overriding options go here
style: style,
drag: true
} )
// Listen for changes at the widget ...
.on( 'affectchanged',
function( event, affect ) {
// ... so we can update the slider of each component.
$.each( affect, function( component, value ) {
$( '#' + component ).val( value ).slider( 'refresh' );
} );
} );
// For each of our three sliders ...
$( '#pleasure, #arousal, #dominance' ).each( function() {
var $this = $( this );
// set the initial values from the widget
$this.slider( 'refresh' );
// and listen for changes and update the widget accordingly ...
$this.on( 'change', function( event ) {
var value = parseFloat( $this.val() );
if ( ! isNaN( value ) ) {
// ... so we can update the widget accordingly.
$element.affectbutton( 'affect', this.id, value );
}
} );
} );
} );
} );
</script>
</head>
<body>
<div data-role="header" data-position="fixed" data-theme="a">
<div data-role="navbar">
<ul>
<li><a href="index.html" data-prefetch="true" data-transition="fade" class="ui-btn-active">Demo</a></li>
<li><a href="about.html" data-prefetch="true" data-transition="fade">About</a></li>
<li><a href="usage.html" data-prefetch="true" data-transition="fade">Usage</a></li>
<li><a href="android.html" data-prefetch="true" data-transition="fade">Android</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->
<div id="demo" data-role="page" data-title="Demo">
<div data-role="content">
<p>
The <b>AffectButton</b> is a widget to record and/or display emotional
state, in terms of three scalar values according to the so-called
Pleasure-Arousal-Dominance
<a href="http://en.wikipedia.org/wiki/PAD_emotional_state_model">model</a>.
<p>
<p>
Provided you are using a sufficiently modern browser, you will see a yellow face
drawn below this paragraph. Drag your finger or your cursor across the canvas until
the face expresses your mood and examine the P/A/D components at the sliders
underneath.
</p>
<!-- The main attraction -->
<canvas id="affectbutton"></canvas>
<!-- P/A/D sliders -->
<fieldset data-role="controlgroup">
<div class="ui-field-contain">
<label for="pleasure">Pleasure</label>
<input id="pleasure" type="range" value="0" min="-1" max="1" step="0.05" />
</div>
<div class="ui-field-contain">
<label for="arousal">Arousal</label>
<input id="arousal" type="range" value="0" min="-1" max="1" step="0.05" />
</div>
<div class="ui-field-contain">
<label for="dominance">Dominance</label>
<input id="dominance" type="range" value="0" min="-1" max="1" step="0.05" />
</div>
</fieldset>
<p>
Conversely, you can also set P/A/D components at the sliders to make the
facial expression change accordingly -- all values range over [-1, 1].
</p>
<h3>Requirements</h3>
<p>
Obviously, we require that the browser supports javascript and has it enabled for
the domain at hand. Furthermore, the widget is rendered in a <code>canvas</code>
element. You should not have any compatibility issues unless you use really outdated
versions of jQuery/UI.
</p>
</div>
</div>
</body>
</html>