Descrição
O botão giratório pode ser criado adicionando -se o atributo data-role = "slider" ao seu <select> .
Exemplo
O exemplo a seguir demonstra o uso de switch basculante no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>Basic Slider Flip Switch</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 = "flip">Flip Toggle Switch:</label>
<select id = "flip" name = "flip" data-role = "slider">
<option value = "off">Off</option>
<option value = "on">On</option>
</select>
</form>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -