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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
<?php
$title = "noUiSlider - User Interaction Settings";
$description = "noUiSlider supports a ton of features, such as dragging the range, or setting fixed handle distances.";
$canonical = "nouislider/behaviour-option/";
?>
<h1>Slider behaviour</h1>
<section>
<div class="view">
<p>noUiSlider offers several ways to handle user interaction. The range can be made draggable, or handles can move to tapped positions. All these effects are optional, and can be enabled by adding their keyword to the <code>behaviour</code> option.</p>
<p>This option accepts a <code>"-"</code> separated list of <code>"drag"</code>, <code>"drag-all"</code>, <code>"tap"</code>, <code>"fixed"</code>, <code>"snap"</code>, <code>"unconstrained"</code>, <code>"invert-connects"</code> or <code>"none"</code>.</p>
<div class="example">
<div id="behaviour"></div>
<?php run('behaviour-option'); ?>
</div>
</div>
<div class="side">
<?php code('behaviour-option'); ?>
</div>
</section>
<section>
<ul>
<li><a href="#section-tap">Tap</a></li>
<li><a href="#section-tap">Drag</a></li>
<li><a href="#section-fixed">Fixed dragging</a></li>
<li><a href="#section-drag-all">Drag all handles</a></li>
<li><a href="#section-snap">Snap</a></li>
<li><a href="#section-hover">Hover</a></li>
<li><a href="#section-unconstrained">Unconstrained</a></li>
<li><a href="#section-smooth-steps">Smooth steps</a></li>
<li><a href="#section-invert-connects">Invert connects</a></li>
</ul>
</section>
<?php sect('examples'); ?>
<h2>Example configurations</h2>
<section>
<div class="double">
<pre><code>behaviour: "drag"</code></pre>
<p>Make the <strong>range</strong> draggable. <strong>Handles</strong> are <em>always</em> draggable.</p>
</div>
<div class="double">
<pre><code>behaviour: "drag-fixed"</code></pre>
<p>The range is draggable. The range width can't be changed, so dragging one handle will move the other, too.</p>
</div>
<div class="double">
<pre><code>behaviour: "tap"</code></pre>
<p>Make the closest handle when the slider gets tapped.</p>
</div>
<div class="double">
<pre><code>behaviour: "tap-drag"</code></pre>
<p>Make the closest handle jump when the slider bar is tapped, make the range draggable.</p>
</div>
<div class="double">
<pre><code>behaviour: "hover"</code></pre>
<p>Fire <code>hover</code> events when a user with a mouse or pen hovers over the slider.</p>
</div>
<div class="double">
<pre><code>behaviour: "unconstrained-tap"</code></pre>
<p>Allow handles to move past each other.</p>
</div>
<div class="double">
<pre><code>behaviour: "none"</code></pre>
<p>Turn off all behaviour, except for standard moving.</p>
</div>
</section>
<?php sect('tap'); ?>
<h2>Tap</h2>
<section>
<div class="view">
<p>A handle snaps to a clicked location. A smooth transition is used. This option is <strong>default</strong>.</p>
<div class="example">
<div id="tap"></div>
<?php run('tap'); ?>
</div>
</div>
<div class="side">
<?php code('tap'); ?>
</div>
</section>
<?php sect('drag'); ?>
<h2>Drag</h2>
<section>
<div class="view">
<p>Makes the range (the green connecting bar between handles) draggable. Requires two handles. The <code>connect</code> option <strong>must</strong> be set to <code>true</code>. The <code>slide</code> event fires for both handles when dragging the range.</p>
<div class="example">
<div id="drag"></div>
<?php run('drag'); ?>
</div>
</div>
<div class="side">
<?php code('drag'); ?>
</div>
</section>
<?php sect('fixed'); ?>
<h2>Fixed dragging</h2>
<section>
<div class="view">
<p>Keeps the distance between handles fixed when the <code>'drag'</code> flag is set.</p>
<div class="example">
<div id="drag-fixed"></div>
<?php run('drag-fixed'); ?>
</div>
</div>
<div class="side">
<?php code('drag-fixed'); ?>
</div>
</section>
<?php sect('drag-all'); ?>
<h2>Drag all handles</h2>
<section>
<div class="view">
<p>Drags all handles when the <code>'drag'</code> flag is set. Requires more than two handles. The <code>connect</code> option <strong>must</strong> be set to <code>true</code>. The <code>slide</code> event fires for all handles when dragging the range.</p>
<div class="example">
<div id="drag-all"></div>
<?php run('drag-all'); ?>
</div>
</div>
<div class="side">
<?php code('drag-all'); ?>
</div>
</section>
<?php sect('snap'); ?>
<h2>Snap</h2>
<section>
<div class="view">
<p>A handle snaps to a clicked location. It can immediatly be moved, without a <code>mouseup</code> + <code>mousedown</code>.</p>
<div class="example">
<div id="snap"></div>
<?php run('snap'); ?>
</div>
</div>
<div class="side">
<?php code('snap'); ?>
</div>
</section>
<?php sect('hover'); ?>
<h2>Hover</h2>
<section>
<div class="view">
<p>With this option set, the slider fires <code>hover</code> events when a mouse or pen user hovers over the slider. The event is provided with the slider value at the hovered position. It <strong>does not</strong> fire while the slider is being dragged by mouse or pen, but it <strong>does</strong> for touch events.</p>
<div class="example">
<div id="hover"></div>
<span class="example-val" id="hover-val"></span>
<style>#hover-val:before { content: "Hovered value: " }</style>
<?php run('hover'); ?>
</div>
</div>
<div class="side">
<?php code('hover'); ?>
</div>
</section>
<?php sect('unconstrained'); ?>
<h2>Unconstrained</h2>
<section>
<div class="view">
<p>With this option set, handles are allowed to move past each other. The <code>limit</code> and <code>margin</code> options cannot be used with this behaviour.</p>
<p>All APIs will return slider values in the original handle order, regardless of whether handles have changed places.</p>
<div class="example">
<div id="unconstrained"></div>
<span class="example-val" id="unconstrained-values"></span>
<?php run('unconstrained'); ?>
</div>
</div>
<div class="side">
<?php code('unconstrained'); ?>
</div>
</section>
<?php sect('smooth-steps'); ?>
<h2>Smooth steps</h2>
<section>
<div class="view">
<p>With this option set, handles will ignore <code>step</code> values while dragging. Steps are applied when a handle is released. The <code>"update"</code> event fires when a handle is released.</p>
<div class="example">
<div id="smooth-steps"></div>
<span class="example-val" id="smooth-steps-values"></span>
<?php run('smooth-steps'); ?>
</div>
</div>
<div class="side">
<?php code('smooth-steps'); ?>
</div>
</section>
<?php sect('combined'); ?>
<h2>Combined options</h2>
<section>
<div class="view">
<p>Most <code>'behaviour'</code> flags can be combined. This example combines <code>'tap'</code>, <code>'drag'</code> and <code>'smooth-steps'</code>.</p>
<div class="example">
<div id="combined"></div>
<?php run('combined'); ?>
</div>
</div>
<div class="side">
<?php code('combined'); ?>
</div>
</section>
<?php sect('invert-connects'); ?>
<h2>Invert Connects</h2>
<section>
<div class="view">
<p>With this option set, connects invert when handles pass each other.</p>
<p>Requires the <code><a href="#section-unconstrained">unconstrained</a></code> behaviour and the <code>connect</code> option. This option is only applicable for sliders with two handles.</p>
<div class="example">
<div id="invert-connects"></div>
<span class="example-val" id="invert-connects-values"></span>
<?php run('invert-connects'); ?>
<?php run('invert-connects-link'); ?>
</div>
</div>
<div class="side">
<?php code('invert-connects'); ?>
<div class="viewer-header">Show the slider value</div>
<div class="viewer-content">
<?php code('invert-connects-link'); ?>
</div>
</div>
</section>
|