frpjs
Version:
Functional Reactive Programming JavaScript Library
38 lines (36 loc) • 841 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>SwipeView</title>
<style>
html, body {
margin: 0px;
padding: 0px;
}
#slide-1 {
background: no-repeat center/150% url("/images/blueSquare.png") #CC0066;
}
#slide-2 {
background: no-repeat center/150% url("/images/yellowSquare.png") #990066;
}
#slide-3 {
background: no-repeat center/150% url("/images/pinkSquare.png") #9900CC;
}
#slide-4 {
background: no-repeat center/150% url("/images/graySquare.png") #336666;
}
</style>
</head>
<body>
<div id="container">
<div id="slider">
<div id="slide-1"></div>
<div id="slide-2"></div>
<div id="slide-3"></div>
<div id="slide-4"></div>
</div>
</div>
<script src="build/app.js"></script>
</body>
</html>