Page 1 of 1

(Gelöst) Album lineares Template?

Posted: Wed Jan 26, 2011 12:25 pm
by Publisher
Hallo miteinander.

Kann man mit dem aktuellsten CMS MS und dem aktuellsten Album Modul eine Albumgalerie machen wo man die Bilder mit Vor-, und Zurückbuttons wechseln kann? So wie in den Screenshots:

http://tera.ch.towebdesign.ch/albumlinear1.png
http://tera.ch.towebdesign.ch/albumlinear2.png

Danke für die Feedbacks!

Re: Album lineares Template?

Posted: Wed Jan 26, 2011 1:09 pm
by uniqu3
Album funktioniert nicht mehr so toll mit 1.9.2 nehme doch lieber Gallery http://dev.cmsmadesimple.org/projects/gallery
Dazu könntest Du zum beispiel das Cycle template nehmen und die function parameter für vor und zurück findest Du hier http://malsup.com/jquery/cycle/int2.html

Re: Album lineares Template?

Posted: Tue Feb 08, 2011 9:12 am
by Publisher
Konnte dein Beispiel noch nicht anschauen, fand aber vorher noch ein Template das funktioniert. :-)

Beispiel: http://damarillis.ch/portfolio.html

Code: Select all

{if $picture->id>0}

    {* Big Picture *}
    <div id="portfolioframe">
        {if $link.picture.previous}
        <a href="{$link.picture.previous}" title="Vorheriges Bild" class="pic-prev">
            <img src="/images/prev.png" alt="Vorheriges Bild" />
        </a>
        {/if}
        
        <p class="title">{$picture->name}</p>
        <img src="{$picture->picture}" alt="{$picture->name|escape:'html'}"  title="{$picture->name|escape:'html'}" class="border" />
        
        {if $link.picture.next}
        <a href="{$link.picture.next}" title="Nächstes Bild" class="pic-next">
            <img src="/images/next.png" alt="Nächstes Bild" />
        </a>
        {/if}
    </div>

{/if}


{if $picturecount==0}Keine Bilder verfügbar{/if}
<div style="clear:both"></div>