基於bootstrap點擊圖片放大插件

        <!DOCTYPE html>
        <html>
        <head>
            <title></title>
            <!-- Introducing the bootstrap style css file-->
            <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
        </head>
        <body>
                <!-- demo image -->
                <img src="assets/img/demo1.jpg" width="400" class="viewer img-responsive"/>
        <!--Introduce the necessary js file-->
        <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
        <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.js"></script>
        <script src="dist/bootstrap.viewer.min.js"></script>
        <script type="text/javascript">
            $(function () {
                $('.viewer').bootstrapViewer();//The default image source file path is the src attribute of the img tag.
            })
        </script>
        </body>
        </html>

插件下載地址:http://bootstrap-viewer.leftso.com/

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章