Descrição
Para definir a amostra do tema para seu controle deslizante, você pode adicionar data-themeatributo para a entrada .
Exemplo
O exemplo a seguir demonstra o uso do tema do controle deslizante no 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>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -