Answers for "fadeout animation"

3

fadein fadeout jquery

$('.btn-cart').click(function(e) {
		e.preventDefault();
		$('.cartlist').fadeIn().addClass('active');
	});

	$('.btn-cartlist-close').click(function() {
		$('.cartlist').removeClass('active').fadeOut();
	});
Posted by: Guest on December-15-2020
0

js fadeout

const target = document.getElementById("target");

target.addEventListener('click', () => target.style.opacity = '0');
// If you want to remove it from the page after the fadeout
target.addEventListener('transitionend', () => target.remove());
Posted by: Guest on July-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language