1-) JQuery - opacity sini düşürerek gizler fadeOut metodu. Yükseltmek ise fadeIn metodu
$('#sonlandir').click(function () { $(this).fadeOut(2000, function () { // 2000 = 2sn de gerçekleşşin // bittiğinde ne yapsın bunu kullanmaya bilirsin console.log('sonlandi'); $(this).fadeIn('fast', function () {// fast hizli geri gelsin demek console.log('tekrar yüklendi'); }); }); });<button id="sonlandir">Sonlandir</button>