Skip to content

zhdonghd/miniView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

support

  • ie9+
  • chrome
  • edge

Quickstart

Load 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"});

Method

init

param: 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

refresh

param: config. just like init method.

Demo

image