* @since 20.0.0 */ protected $attributes = []; /** * @param string $thumbnailUrl a relative or absolute URL to the thumbnail or icon of the entry * @param string $title a main title of the entry * @param string $subline the secondary line of the entry * @param string $resourceUrl the URL where the user can find the detail, like a deep link inside the app * @param string $icon the icon class or url to the icon * @param boolean $rounded is the thumbnail rounded * * @since 20.0.0 */ public function __construct(string $thumbnailUrl, string $title, string $subline, string $resourceUrl, string $icon = '', bool $rounded = false) { $this->thumbnailUrl = $thumbnailUrl; $this->title = $title; $this->subline = $subline; $this->resourceUrl = $resourceUrl; $this->icon = $icon; $this->rounded = $rounded; } /** * Add optional attributes to the result entry, e.g. an ID or some other * context information that can be read by the client application * * @param string $key * @param string $value * * @since 20.0.0 */ public function addAttribute(string $key, string $value): void { $this->attributes[$key] = $value; } /** * @return array * * @since 20.0.0 */ public function jsonSerialize(): array { return [ 'thumbnailUrl' => $this->thumbnailUrl, 'title' => $this->title, 'subline' => $this->subline, 'resourceUrl' => $this->resourceUrl, 'icon' => $this->icon, 'rounded' => $this->rounded, 'attributes' => $this->attributes, ]; } } nput type='submit' value='switch'/> The official jQuery user interface library: https://github.com/jquery/jquery-uiwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/demos/slider/range.html
blob: 646b1d9030afa261847461f283a5edc1e3929846 (plain)
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 lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>jQuery UI Slider - Range slider</title>
	<link rel="stylesheet" href="../../themes/base/all.css">
	<link rel="stylesheet" href="../demos.css">
	<script src="../../external/requirejs/require.js"></script>
	<script src="../bootstrap.js">
		$( "#slider-range" ).slider({
			range: true,
			min: 0,
			max: 500,
			values: [ 75, 300 ],
			slide: function( event, ui ) {
				$( "#amount" ).val( "$" + ui.values[ 0 ] + " - $" + ui.values[ 1 ] );
			}
		});
		$( "#amount" ).val( "$" + $( "#slider-range" ).slider( "values", 0 ) +
			" - $" + $( "#slider-range" ).slider( "values", 1 ) );
	</script>
</head>
<body>

<p>
	<label for="amount">Price range:</label>
	<input type="text" id="amount" readonly style="border:0; color:#f6931f; font-weight:bold;" />
</p>

<div id="slider-range"></div>

<div class="demo-description">
<p>Set the <code>range</code> option to true to capture a range of values with two drag handles.  The space between the handles is filled with a different background color to indicate those values are selected.</p>
</div>
</body>
</html>