This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>iOS No Scroll</title> | |
<style> | |
html.no-scroll, html.no-scroll > body { | |
overflow: hidden; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $RegisterUniversalClick = function(target, listener, isMiddleClickTriggers) { | |
var touchSupported = ('ontouchstart' in window); | |
var lastEventSource; | |
if (touchSupported) { | |
var tapping; | |
target.addEventListener('touchstart', function(e) { | |
if (lastEventSource === 'mouse') { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div {width: 170px; font-size: 14px;} | |
label {display: inline-block; padding-left: 20px; text-indent: -20px; vertical-align: middle;} | |
input { | |
margin: 0 7px 0 0; | |
width: 13px; | |
padding: 0; | |
border: 0; | |
height: auto; | |
font-size: inherit; | |
vertical-align: middle; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div {width: 170px; font-size: 14px;} | |
label {display: inline-block; padding-left: 20px; text-indent: -20px; vertical-align: middle;} | |
input { | |
margin: 0 7px 0 0; | |
width: 13px; | |
padding: 0; | |
border: 0; | |
height: auto; | |
font-size: 100px; | |
-moz-box-sizing: border-box; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div {width: 170px; font-size: 18px;} | |
label {display: inline-block; padding-left: 20px; text-indent: -20px;} | |
input { | |
display: inline-block; | |
line-height: 500px; | |
margin: 0 7px 0 0; | |
width: 13px; | |
padding: 0; | |
border: 0; | |
height: auto; |