bla
полезное для диза
Сообщений 121 страница 127 из 127
Поделиться1222018-07-09 08:18:39
ghjk
Поделиться1232018-07-09 08:34:50
sasha
Поделиться1242018-07-09 09:55:18
http://forum.mybb.ru/viewtopic.php?id=3 … 21#p888118 - маска профиля
Поделиться1252018-07-16 15:13:08
Код:
<script type="text/javascript"><!--Своя картинка в каждую категорию -->
$(document).ready(function(){
myarray=new Array(
"underground", "https://forumstatic.ru/files/0018/12/e6/87609.png",
"computer class", "https://forumstatic.ru/files/0018/12/e6/29740.png",
"game room", "https://forumstatic.ru/files/0018/12/e6/31849.png",
"food court", "https://forumstatic.ru/files/0018/12/e6/26992.png",
"pr-отдел", "https://forumstatic.ru/files/0018/12/e6/72533.png",
"vip-zona", "https://forumstatic.ru/files/0018/12/e6/89344.png",
"statistics", "https://forumstatic.ru/files/0018/12/e6/33655.png"
)
$("#pun-index div.category h2,#pun-index #pun-stats h2").each(function (i) {
for(q=0;q<myarray.length;q++){
var cssObj = {
"height":"66px",
"background-color": "transparent",
"background-image":"url("+myarray[q+1]+")",
"background-position":"50% 50%",
"background-repeat":"no-repeat"
}
if($(this).children("span").text()==myarray[q])$(this).css(cssObj);
q++}
});
});
</script>