http://aamirafridi.com/jquery/jquery-marquee-plugin#examples
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/jquery.marquee/1.3.1/jquery.marquee.min.js"></script>
<style type="text/css"> .marquee { width: 300px; overflow: hidden; border: 1px solid #ccc; background: #ccc; } .ver { height: 500px; width: 90%; } </style>
<div class="marquee ver" data-direction='up' data-duration='1000' data-pauseonhover="true">jQuery marquee is the best marquee plugin in the world. </div>
<script> $(document).ready(function () { $('.marquee').marquee(); }); </script>