0
I have a photo slide that is based on ul and will load the photos to mount the slide. Below the section that brings the photos:
<ul id="slide" class="bxslider" style="padding:0px;margin:0px;">
<?php
for($i=0;$i<count($photos);$i++){
<li class="propertyinfoli">
<a class="osmodal" href="<?php echo JURI::root()?>caminho-da-imagem">
<img src="<?php echo JURI::root()?>caminho-da-imagem"/>
</a>
</li>
As he uploads the photos, these photos appear at the bottom of each other, leaving the page with a strange appearance, until loading everything, which is when it is aligned right.
I wanted, while uploading the photos, to be 1 visible photo, or to upload hidden, then when loading everything, it shows the slide. Some slides have more than 25 photos, then it takes about 10 seconds to load.
You know if it’s possible?