se il target è iphone, ipad, safari e chrome potresti usare le transizioni css -webkit proprietarie

non l'ho testato ma se nella tua pagina devi fare un fadein dell'elemento img potresti iniziare a scrivere qualcosa del tipo

codice:
      @-webkit-keyframes fadein {
       from {
         opacity: 0;
       }
       to {
         opacity: 1;
       }
      }

      img {
       -webkit-animation-name: fadein;
       -webkit-animation-duration: 5s;
       -webkit-animation-iteration-count: 1;
       }