This is a JavaScript/jQuery solution, and site-wide animations can remain enabled. Timeout is optional but will allow the animation to be visible before the page redirects.
<script>
$('.sqs-html-block a').on('touchstart', function () {
var href = $(this).attr('href');
setTimeout(function(){
window.location.href = href;
}, 100);
});
</script>