JSFiddle - React, Tailwind, and code Playground

by Anatol

HTML

<div class="elem"><img src="/img/top-bg.png" style="margin-top:0px"></div>

JavaScript

$('.elem').on('touchstart', function() {
  $(this).children('img').css('margin-top','-' + $(this).height() + 'px');
}).on('touchend', function() {
  $(this).children('img').css('margin-top','0px');
});