JSFiddle - React, Tailwind, and code Playground

by thewingser

HTML

<script type="text/javascript" src="http://jscrollpane.kelvinluck.com/script/jquery.jscrollpane.min.js">
</script>
<link type="text/css" href="http://jscrollpane.kelvinluck.com/style/jquery.jscrollpane.css" rel="stylesheet" media="all" />

<div id="pane1" class="article">


    <img src="http://img.ffffound.com/static-data/assets/6/1bdc5eb88e01c8a65be525158e717604864b63f3_m.jpg" />


</div>

CSS

.article{border:1px solid black;margin:30px;border-top-left-radius:50px;width:300px;height:300px;overflow:scroll;}

JavaScript

$(document).ready(function()
{
    $('#pane1').jScrollPane();
});