JSFiddle - React, Tailwind, and code Playground

HTML

<img class="intro_lg" src="https://docs.angularjs.org/img/angularjs-for-header-only.svg">

JavaScript

$(document).ready(function() {
  $(".intro_lg").click(function() {
    $(this).fadeOut(1000, function() {
      var path = "https://i.imgur.com/l1QfJMMb.jpg";
      $(this).attr("src", path);
    }).fadeIn(1000);
    return false;
  });
});