patapata
v1.1.0
Published
Animation of dom, flipping its sections for showing and hiding the whole
Downloads
6
Maintainers
Readme
patapata v1.1.0
Animation of dom, flipping its sections for showing and hiding the whole
Note: This library depends on jQuery and es6-promise.
Usage
<script src="jquery.min.js"></script>
<script src="patapata.js"></script>
<script>
$(function () {
$('.main').patapata(8, 4, {unitDur: 500}).show().then(function (pp) {
pp.$dom.click(function () {
pp.hide();
});
});
});
</script>