$(function(){ $('.effect2021 .hop').css({"opacity":"0", "transform":"translateY(10px)"}); $(window).scroll(function (){ $(".effect2021").each(function(){ var imgPos = $(this).offset().top; var scroll = $(window).scrollTop(); var windowHeight = $(window).height(); if (scroll > imgPos - windowHeight + windowHeight/10){ $(".hop",this).css({"opacity":"1", "transform": "translateY(0)" }); $("i",this).css({ "font-size": "100px", "padding": "0 20px 40px" }); } }); }); });