I have a photo slide that is based on ul and will upload the photos to mount the slide. Below the section that follows 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 loads the photos, these photos will appear one underneath the other, leaving the page with a strange appearance, until loading everything, which is when it is aligned right.
I wanted the photo to be visible, or it should be hidden, so when it loads, it shows the slide. Some slides have more than 25 photos, it takes about 10 seconds to load.
Do you know if it's possible?