Méthode addPage

bsCarousel

public function addPage($src, $alt) : htmlDiv

Description

La fonction addPage permet d'ajouter une image dans un carrousel Bootstrap.

Le paramètre $src donne l'adresse de l'image.

Le paramètre $alt indique le texte alternatif de l'image.

La fonction retourne une instance de htmlDiv que vous pouvez compléter.

Exemple


<?php
  $page1 
$carousel->addPage('data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==''First slide');
  
$page1->addHeader(1'Example headline');
  
$page1->addParagraph(new htmlTextNode('Note: If you\'re viewing this page via a <code>file://</code> URL, the "next" and "previous" Glyphicon buttons on the left and right might not load/display properly due to web browser security rules.'));
  
$page1->addParagraph(new bsButtonLink('Sign up today''primary''lg'));

Voir l'exemple Bootstrap Carousel.