$('.item').each(function(index) {
if($(this).offset().left > 100 && $(this).offset().left > width - 100) {
$(this).children('.add').css('transform', 'perspective( 400px ) rotateY(45deg)')
} else {
$(this).children('.add').css('transform', 'perspective( 400px ) rotateY(0deg)')
}
});