jQuery pixel perfect tool
A simple tool for convenient work with design mockups in a browser
jQuery-Pixel-Perfect is a small plugin that conveniently allows you to transpose a design layout over a developed site. With jQuery-Pixel-Perfect, you do not need to make measurements and you can write CSS code that pixel-matches to the design layout.
How to install:
Browser:
<script src="https://code.jquery.com/jquery.js" type="text/javascript"></script>
<script src="jquery-pixel-perfect.js" type="text/javascript"></script>
Common JS:
require('jquery');
require('jquery-pixel-perfect');
Create an overlay image for page you are coding and put it in any folder in your project. For example in ../images/mockup.png
$(document).ready(function() {
$('body').pixelPerfect();
});
How to use:
Use the following buttons:
- [Up] / [Down] / [Left] / [Right] keys or mouse to move the mockup
- [Q] / [W] keys to change the opacity
- [S] key to show/hide mockup
- [F] key to change the "absolute/fixed" positioning property of mockup
You can actually change the default parameters (like actions of keyboard keys, image path, mockup draggability). To do so, you need to specify the input parameters in the jQuery-Pixel-Perfect method.
$(document).ready(function() {
$('body').pixelPerfect({
path: 'images/mockup.png',
draggable: true,
topBtnCode: 38,
rightBtnCode: 39,
bottomBtnCode: 40,
leftBtnCode: 37,
opacityIncBtnCode: 81,
opacityDecBtnCode: 87,
positionBtnCode: 70,
visibilityBtnCode: 83
});
});
P.S. Here you can find the full table with keyboard keys code