Display attached images as background-image css

using this code

<?php if (has_post_thumbnail( $post->ID ) ): ?>
      <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); ?>
    <div class="single-parallax-image" style="background-image:url("<?=$image[0]; ?>")"><?=get_the_content()?></div>

      </div>
    <?php endif; ?>