saftmeister
Nutze den Saft!
saftmeister hat eine neue Ressource erstellt:
[PHP] Bilder-Karusell-Klasse - Eine einfache Bilder-Karusell-Klasse
Weitere Informationen zu dieser Ressource...
[PHP] Bilder-Karusell-Klasse - Eine einfache Bilder-Karusell-Klasse
Eine einfache, leicht einzubindende Klasse, mit der man ein Bilder-Karusell bauen kann.
Carousel.php
PHP:<?php class CarouselException extends Exception{}; /** * Image carousel class * * @author saftmeister * @license BSD * */ class Carousel { /** * The url which sends the image to the client * * @var string */ private $imageUrl; /** * The url which displays the HTML for displaying the carousel * * @var string */ private $indexUrl; /** *...
Weitere Informationen zu dieser Ressource...