Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.13 KB | None | 0 0
  1. <!--================ SLIDE =====================-->
  2.                             <div id="wrapper">
  3.                                 <div id="upload"><a id="textofoto" id="img-value(<-img.jpg )" >Baixar Foto <img                   src="../css/tray_white.png"></a></div>
  4.                                 <div id="carousel-wrapper">
  5.                                     <img id="shadow" src="../plugins/img/gui/carousel_shadow.png" />
  6.                                     <div id="carousel" >
  7.                                         <?php if (isset($slide->db->data[0])): ?>
  8.                                             <?php foreach ($slide->db->data as $s): ?>
  9.                                                 <span id="<?= $s->imagens_id ?>">
  10.                                                     <img id="get-img" (<- img.jpg nome da imagem  ) src="../images/slide/<?= $s->imagens_url ?>" />
  11.                                                 </span>
  12.                                             <?php endforeach; ?>
  13.                                         <?php endif; ?>
  14.                                     </div>
  15.                                 </div>
  16.                                 <div id="thumbs-wrapper">
  17.                                     <div id="thumbs">
  18.                                         <?php if (isset($slide->db->data[0])): ?>
  19.                                             <?php foreach ($slide->db->data as $indicador): ?>
  20.                                                 <a href="#<?= $indicador->imagens_id ?>" class="selected">
  21.                                                     <img src="../images/slide/<?= $indicador->imagens_url ?>" />
  22.                                                 </a>
  23.                                             <?php endforeach; ?>
  24.                                         <?php endif; ?>
  25.                                     </div>
  26.                                     <a id="prev" href="#"></a>
  27.                                     <a id="next" href="#"></a>
  28.                                 </div>
  29.                             </div>
  30.                             <!--================ SLIDE =====================-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement