Please override the existing template file –
wp-content/plugins/addons-for-elementor/templates/addons/posts-slider/style-1.php
by copying it to the folder –
wp-content/your-theme/addons-for-elementor/addons/posts-slider/style-1.php
Once copied, you can modify the file line number 38 from –
<div class="lae-post-overlay lae-post-featured-img-bg" style="background-image: url(<?php echo $image_src; ?>); height: <?php echo $settings['slider_height']; ?>px;">
to
<div class="lae-post-overlay lae-post-featured-img-bg">
<img src="<?php echo $image_src; ?>" alt="<?php echo $settings['display_title']; ?>" class="lae-image"/>
and you are all set.
Pls make sure the images are all same aspect ratio since we are trying to move from background image to IMG tag.