Wijmo ユーザーガイド > ウィジェット > Popup > クイックスタート |
このクイックスタートでは、Popup ウィジェットを HTML マークアップおよび JQuery スクリプトを使用して、HTML プロジェクトに Popup ウィジェットを追加する方法について学びます。
ドロップダウンしてマークアップをコピーします
テキストエディタに張り付けます |
コードのコピー |
---|---|
<!DOCTYPE HTML> <HTML> <head> </head> <body> </body> </HTML> |
ドロップダウンからリファレンスをコピーしてhead タグ内に貼り付けます
リファレンス |
コードのコピー |
---|---|
<!--jQuery References--> <script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script> <script src="http://code.jquery.com/ui/1.11.0/jquery-ui.min.js" type="text/javascript"></script> <!--Theme--> <link href="http://cdn.wijmo.com/themes/aristo/jquery-wijmo.css" rel="stylesheet" type="text/css" /> <!--Wijmo Widgets CSS--> <link href="http://cdn.wijmo.com/jquery.wijmo-pro.all.3.20173.128.min.css" rel="stylesheet" type="text/css" /> <!--Wijmo Widgets JavaScript--> <script src="http://cdn.wijmo.com/jquery.wijmo-open.all.3.20173.128.min.js" type="text/javascript"></script> <script src="http://cdn.wijmo.com/jquery.wijmo-pro.all.3.20173.128.min.js" type="text/javascript"></script> <script src="http://cdn.wijmo.com/interop/wijmo.data.ajax.3.20173.128.js" type="text/javascript"></script> <!--Knockout JS Library--> <script src="http://cdn.wijmo.com/external/knockout-3.1.0.js" type="text/javascript"></script> <!--Wijmo Knockout Integration Library--> <script src="http://cdn.wijmo.com/interop/knockout.wijmo.3.20173.128.js" type="text/javascript"></script> |
ドロップダウンからマークアップをコピーして body タグ内に貼り付けます
マークアップ |
コードのコピー |
---|---|
<!-- Image that displays with wijpopup --> <div id="unicorn"> <img src="http://cdn.wijmo.com/images/unicorn.jpg" alt="Popup Unicorn!" /> </div> <!-- Button to show the image and set its relative location --> <div> <input type="button" id="showbtn" onclick="popupbelow();" value="Show Popup" /> </div> |
ドロップダウンからスクリプトをコピーして head タグ内に貼り付けます
スクリプト |
コードのコピー |
---|---|
<script type="text/javascript"> $(document).ready(function () { $("#unicorn").wijpopup({ showEffect:'blind', autoHide:'true' }); }); function popupbelow() { $("#unicorn").wijpopup('show', { of: $('#showbtn') }); }; </script> |