web-inquiry-client
Version:
Client for webInquiry.
41 lines (38 loc) • 767 B
HTML
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Web inquiry client - test</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
body {
width: 100%;
height: 100vh;
margin: 0;
background: rgb(43, 43, 43);
}
#main {
position: fixed;
width: 100%;
height: 100%;
}
#test {
width: 100px;
height: 100px;
background: blue;
transform: translateY(100px)
}
#scroll {
height: 4000px;
}
</style>
</head>
<body>
<div id="main">
<div id="test"></div>
</div>
<div id="scroll"></div>
<script src='/dist/webInquiryClient.js'></script>
</body>
</html>