插件描述:一个简单的jQuery插件,通过拖曳显示或隐藏图像
使用
包括:
HTML:
JS:$(function() {
$('.covered').coveringBad();
});
选项:marginY : 20, // Handle's distance from top and bottom
marginX : 20, // Handle's distance from left and right
setX : 30, // Defulat location for handle from left
setY : 150, // Defulat location for handle from top
direction : "horizontal" // would be horizontal/vertical
增加
$('.first').coveringBad();
$('.second').coveringBad();
$('.third').coveringBad({
marginY : 20 ,
marginX : 400 ,
setX : 400,
setY : 235 ,
direction : "vertical"
});
});