actionsheet
Version:
actionsheet component for touch device
40 lines (39 loc) • 1.17 kB
HTML
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>actionsheet</title>
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, width=device-width, height=device-height"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" href="style.css" type="text/css" media="all">
<style type="text/css" media="screen">
body, html{
padding: 0px;
margin: 0px;
font-size: 14px;
overflow: hidden;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
#demo {
height: 100px;
width: 100px;
background-color: tomato;
line-height: 100px;
font-size: 20px;
color: #fff;
margin: 100px auto;
text-align: center;
}
</style>
</head>
<body>
<div id="demo">
tap me
</div>
<script src="./bundle.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>