View this example
<!doctype html>
<html>
<head>
<title>Vertical sliding example</title>
<style>
#myslider { width:612px; height:612px; }
</style>
</head>
<body>
<div id="myslider">
<img src="http://placekitten.com/g/612/612"/>
<img src="https://unsplash.it/612/612"/>
<img src="https://unsplash.it/612/612?random=1"/>
<img src="https://unsplash.it/612/612?random=2"/>
</div>
</body>
<script src="https://rawgit.com/ruyadorno/simple-slider/master/dist/simpleslider.min.js"></script>
<script>
simpleslider.getSlider({
container: document.getElementById('myslider'),
prop: 'top',
init: -612,
show: 0,
end: 612,
unit: 'px'
});
</script>
</html>