How do I sort coordinates of word positions over an image using Bootstrap's slider carousel ?
You could put adjectives in the picture and they come randomly in different positions on the screen, maybe with different effects too: fade.
More details:
I'm using a popular image slider in the bootstrap called carousel and I want to assign adjectives to an image that will appear at random points in this image, if possible with transitive effect. If the photo has 800x400, the draw coordinates of the point where the words should appear can not exceed the maximum resolution of the image
Follow the code:
<!-- Wrapper for Slides -->
<div class="carousel-inner">
<div class="item active">
<!-- Set the first background image using inline CSS below. -->
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide One');"></div>
<div class="carousel-caption">
<h2>Caption 1</h2>
</div>
</div>
<div class="item">
<!-- Set the second background image using inline CSS below. -->
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide Two');"></div>
<div class="carousel-caption">
<h2>Caption 2</h2>
</div>
</div>
<div class="item">
<!-- Set the third background image using inline CSS below. -->
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide Three');"></div>
<div class="carousel-caption">
<h2>Caption 3</h2>
</div>
</div>
</div>