Scrool hareket edince çalışan js kodunu bu js koduna nasıl ekleyebilirim. Mause üzerine gelince "onhover" çalışıyor fakat ben sayfa aşşağı doğru hareket edince çalışmasını istiyorum. İşin içinden çıkamadım.
if (activeWhen == "onhover") {
$(this).hover(function () {
$(this).children("." + className).find(':nth-child(odd)').css({
"width": "100%",
});
$(this).children("." + className).find(':nth-child(even)').css({
"height": "100%",
});
});
}
else {
setTimeout(function () {
$(this).find(':last-child').addClass("appear");
}, 300);
}