首頁 > 其他

jQuery自定義圖片標注外掛

2019-12-11 14:24:50

jQuery自定義圖片標注外掛

1

新建html文件。


2

準備好需要用到的圖示。



3

書寫hmtl程式碼。

<form action="" id="imgform">

 <p>圖片連結:</p>

 <input type="text" name="src" value="build.jpg" style="display:block;width:100%;height:30px">

 <button class="addpic" type="submit" disabled="disabled" style="margin-top:10px;padding:10px;width:100%">點選標註圖片</button>

</form>


4

書寫css程式碼。

<style>

* { padding: 0; margin: 0 }

.top-tab { background-color: #333; padding: 10px; margin-bottom: 50px }

.top-tab a { display: flex; align-items: center; color: #fff }

#imgform { margin: 0 auto; width: 500px }

</style>


5

書寫並新增js程式碼。

<script src="scripts/jquery.js"></script> 

<script src="scripts/jquery.imageLabel.min.js"></script> 

<script>

    $(function() {

        $(".right-select-box");

        $(".addpic").removeAttr("disabled"), $("#imgform").submit(function(t) {

            t.preventDefault();

            window.c = imageLabel({

                img: $("[name=src]").val(),

                editPop: !0,

                close: function(t) {

                    return t.length && alert(JSON.stringify(t)), !0

                },

                clickArea: function() {},

                edit: function(t) {},

                startArea: function() {},

                confirm: function(t) {

                    return t.length && alert(JSON.stringify(t)), !0

                }

            })

        })

    })

</script>


6

程式碼整體結構。


7

檢視效果。



IT145.com E-mail:sddin#qq.com