其他分享
首页 > 其他分享> > jquery.marquee

jquery.marquee

作者:互联网

  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>

 

标签:jquery,jQuery,plugin,marquee,width,ccc
来源: https://www.cnblogs.com/hofmann/p/11832299.html