开源软件名称:miniView
开源软件地址:https://gitee.com/dong_admin/miniView
开源软件介绍:
MiniView.js - An interesting web plugin !I offer you a web plugin based on jquery that make a mini view of a container on your page. And support mousewheel zoom in. supportQuickstartLoad up miniView.js (after jQuery): <script src="http://code.jquery.com/jquery-1.11.2.min.js"></script><script src="miniView.js"></script> Then add a container with attribute id that much larger than the parent container <div class="borderDiv" style="width: 800px; height: 600px; overflow: hidden; border: 1px solid;"> <div class="mainContainer" id="view" style="width: 2000px; height: 1500px; background-color: #bad6cb"></div></div> After the page is loaded, use init method to initialize the mini view. The method accept config that you can define the scale value, selector and parent scale value. var miniMapObject = MiniMap.init({selector:"#view"}); Methodinitparam: config. json format key | Behavior |
---|
selector | Jquery selector with id attribute | zoom | Scale value of the mini map. default value 0.1 | viewZoom | Scale value of the container. default value 1 | isEnableMouseWheel | Whether enable mousewheel to zoom the container |
refreshparam: config. just like init method. Demo |
请发表评论