mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
40 lines
1.5 KiB
JavaScript
40 lines
1.5 KiB
JavaScript
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
(function ($) {
|
|
$(document).ready(function() {
|
|
|
|
$(document).on('click.card', '.card', function (e) {
|
|
if ($(this).find('> .card-reveal').length) {
|
|
var $card = $(e.target).closest('.card');
|
|
if ($card.data('initialOverflow') === undefined) {
|
|
$card.data(
|
|
'initialOverflow',
|
|
$card.css('overflow') === undefined ? '' : $card.css('overflow')
|
|
);
|
|
}
|
|
if ($(e.target).is($('.card-reveal .card-title')) || $(e.target).is($('.card-reveal .card-title i'))) {
|
|
// Make Reveal animate down and display none
|
|
$(this).find('.card-reveal').velocity(
|
|
{translateY: 0}, {
|
|
duration: 225,
|
|
queue: false,
|
|
easing: 'easeInOutQuad',
|
|
complete: function() {
|
|
$(this).css({ display: 'none'});
|
|
$card.css('overflow', $card.data('initialOverflow'));
|
|
}
|
|
}
|
|
);
|
|
}
|
|
else if ($(e.target).is($('.card .activator')) ||
|
|
$(e.target).is($('.card .activator i')) ) {
|
|
$card.css('overflow', 'hidden');
|
|
$(this).find('.card-reveal').css({ display: 'block'}).velocity("stop", false).velocity({translateY: '-100%'}, {duration: 300, queue: false, easing: 'easeInOutQuad'});
|
|
}
|
|
}
|
|
});
|
|
|
|
});
|
|
}( jQuery )); |