source: extensions/flop_style/mainpage_categories/captify_mini.tpl @ 16393

Last change on this file since 16393 was 16393, checked in by flop25, 12 years ago

update for 2.4 : really amazing !

File size: 1.8 KB
Line 
1{combine_css path="template-extension/flop_style/mainpage_categories/captify_mini.css"}
2{combine_script id="jquery.captify" load="header" path="template-extension/flop_style/mainpage_categories/captify/captify.tiny.js"}
3{html_head}
4  {literal}
5<script type="text/javascript">
6$(function(){
7        $('img.captify').captify({
8                // all of these options are... optional
9                // ---
10                // speed of the mouseover effect
11                speedOver: 'fast',
12                // speed of the mouseout effect
13                speedOut: 'normal',
14                // how long to delay the hiding of the caption after mouseout (ms)
15                hideDelay: 500,
16                // 'fade', 'slide', 'always-on'
17                animation: 'slide',             
18                // text/html to be placed at the beginning of every caption
19                prefix: '',             
20                // opacity of the caption on mouse over
21                opacity: '0.7',                                 
22                // the name of the CSS class to apply to the caption box
23                className: 'caption-bottom',   
24                // position of the caption (top or bottom)
25                position: 'bottom',
26                // caption span % of the image
27                spanWidth: '100%'
28        });
29});
30</script>
31  {/literal}
32{/html_head}
33{assign var=crop value=$derivative_params->sizing->max_crop}
34{if $crop==1}
35{assign var=crop value=true}
36{assign var=width value=$derivative_params->max_width()}
37{else}
38{assign var=crop value=false}
39{assign var=width value=99999}
40{/if}
41{define_derivative name='derivative_captify_mini' width=$width height=$derivative_params->max_height() crop=$crop}
42
43<ul class="thumbnailCategories">
44{foreach from=$category_thumbnails item=cat}
45  <li class="{cycle values="cat_1,cat_2,cat_3,cat_4"}" >
46                        <span class="wrap1"><a href="{$cat.URL}">
47                                <img src="{$pwg->derivative_url($derivative_captify_mini, $cat.representative.src_image)}" class="captify" alt="{$cat.NAME|truncate:38:" [...]"}" title="{$cat.NAME|@replace:'"':' '} - {'display this album'|@translate}" >
48                        </a></span>
49        </li>
50{/foreach}
51</ul>
Note: See TracBrowser for help on using the repository browser.