tbox24 Posted March 12, 2012 Report Share Posted March 12, 2012 <!-- Меню каталога --> <div id="catalog_menu"><div class="menu-top"></div> {* Рекурсивная функция вывода дерева категорий *} {function name=categories_tree} {if $categories} <ul> {foreach $categories as $c} {* Показываем только видимые категории *} {if $c->visible} {assign var="checker" value=false} {foreach $c->subcategories as $cc} {if $category->id == $cc->id}{assign var="checker" value=true} {elseif $cc->subcategories} {foreach $cc->subcategories as $ccc} {if $category->id == $ccc->id}{assign var="checker" value=true} {elseif $ccc->subcategories} {foreach $ccc->subcategories as $cccc} {if $category->id == $cccc->id}{assign var="checker" value=true}{/if} {/foreach} {/if} {/foreach} {/if} {/foreach} <li class="menu-item{if $checker or $category->id == $c->id} selected{/if}{if $c@iteration == 1} firt-item{/if}{if $c@last} last-item{/if}"> {if $c->image}<img src="{$config->categories_images_dir}{$c->image}" alt="{$c->name}">{/if} <a href="catalog/{$c->url}" category_id="{$c->id}">{$c->name}</a> </li> {if $checker or $category->id == $c->id} {categories_tree categories=$c->subcategories} {/if} {/if} {/foreach} </ul> {/if} {/function} {categories_tree categories=$categories} <div class="menu-bottom"></div> </div> <!-- Меню каталога (The End)--> Quote Link to post Share on other sites
mvs Posted May 12, 2012 Report Share Posted May 12, 2012 ребят, а для simpla 1.4 есть такое? спасибо. Quote Link to post Share on other sites
chocolate_moles Posted May 12, 2012 Report Share Posted May 12, 2012 2mvsя же вам делал меню, что с ним случилось? Quote Link to post Share on other sites
mvs Posted May 13, 2012 Report Share Posted May 13, 2012 да.. вы мне делали меню. Кирюша, я же написала Вам, что вчера с вечера до 7 утра все руками восстанавливала. Там кто-то покопался. И меню Вашего нет. Quote Link to post Share on other sites
chocolate_moles Posted May 13, 2012 Report Share Posted May 13, 2012 так а почему бы вам необратиться опять ко мне? я бы вам его восстановил Quote Link to post Share on other sites
smoki Posted May 15, 2012 Report Share Posted May 15, 2012 .catalog_menu>ul{ display:none;}.catalog_menu>.selected+ul{ display:block;}Это при заходе..catalog_menu>ul{ display:none;}.catalog_menu:hover>ul{ display:block;}Это при наведении. Quote Link to post Share on other sites
mvs Posted May 15, 2012 Report Share Posted May 15, 2012 Спасибо большое!!! Quote Link to post Share on other sites
ivan888 Posted May 16, 2012 Report Share Posted May 16, 2012 Уважаемые форумчане, как в горизонтальном меню сделать так, чтобы блок под-категорий появлялся под родителем, а блок под-под-категорий выезжал вправо? Quote Link to post Share on other sites
ivan888 Posted May 16, 2012 Report Share Posted May 16, 2012 Сделал. Quote Link to post Share on other sites
mvs Posted May 16, 2012 Report Share Posted May 16, 2012 как сделал, поделись пожалуйста. спасибо. Quote Link to post Share on other sites
ivan888 Posted May 17, 2012 Report Share Posted May 17, 2012 css+jquery. #categories ul ul { width: 175px; position: absolute; top: 50px;} Это подкатегории#categories ul ul ul{ width: 175px; border-radius: 8px; position: absolute; left: 100%; top: 50px; } Это блок 3-ей вложенности Quote Link to post Share on other sites
mvs Posted May 17, 2012 Report Share Posted May 17, 2012 ... поняла... спасибочки Quote Link to post Share on other sites
Манифест Posted February 5, 2019 Report Share Posted February 5, 2019 Я ничего не понял((( я тупооооооой) Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.