jQuery Mobile - Tema Slider
Descrizione
Per impostare il campione del tema per il tuo cursore, puoi aggiungere data-themeattributo all'input .
Esempio
L'esempio seguente mostra l'uso del tema del cursore in jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>Slider Theme</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<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.3.min.js"></script>
<script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<form>
<label for = "slider1">Slider:</label>
<input type = "range" name = "slider1" id = "slider1" data-track-theme = "b"
data-theme = "b" min = "0" max = "100" value = "60">
</form>
</body>
</html>
Produzione
Eseguiamo i seguenti passaggi per vedere come funziona il codice sopra:
Salva il codice html sopra come slider_theme.html file nella cartella principale del server.
Apri questo file HTML come http: //localhost/slider_theme.html e verrà visualizzato il seguente output.