bootstrap-italia
Version:
Bootstrap Italia è un tema Bootstrap 4 per la creazione di applicazioni web nel pieno rispetto delle Linee guida di design per i servizi web della PA
19 lines (17 loc) • 356 B
JavaScript
$(function() {
$.fn.dimmerShow = function() {
return this.each(function() {
if ($(this).css('display') != 'flex') {
$(this)
.css('display', 'flex')
.hide()
.fadeIn(200)
}
});
}
$.fn.dimmerHide = function (target) {
return this.each(function() {
$(this).fadeOut(200)
});
}
})