yavasilek
Мой дом здесь!
- Регистрация
- 5 Окт 2008
- Сообщения
- 1.200
- Реакции
- 454
Кинуть в папку js effects.core.js и заменить в папке /engine/modules/tagscloud.php на приложенные.
в main.tpl
Вставить после head
в engine.css дописываем
и в заключении в main.tpl вывод тегов заключить в див
<div class="structure">{tags}</div>
в main.tpl
Вставить после head
Код:
<script type="text/javascript" src="{THEME}/js/effects.core.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var f_color = '';
$(".structure a").hover(function() {
f_color = this.style.color;
$(this).animate({ backgroundColor: "#4f94d0", color: "#ffffff" }, 700);
},function()
{
$(this).animate({ backgroundColor: "white", color: f_color }, 200);
});
});
</script>
Код:
.clouds_xsmall {
font-size: 10px;
color:#c4c4c4;
padding:2px;
text-decoration:none;
}
.clouds_small {
font-size: 11px;
color:#999999;
padding:2px;
text-decoration:none;
}
.clouds_medium {
font-size: 14px;
color:#336699;
padding:2px;
text-decoration:none;
}
.clouds_large {
font-size: 20px;
color:#c4c4c4;
padding:2px;
text-decoration:none;
}
.clouds_xlarge {
font-size: 31px;
color:#aad815;
padding:2px;
text-decoration:none;
}
<div class="structure">{tags}</div>