Благодарим за выбор нашего сервиса!
Старшая школа — то самое время для подростков
Сообщений 1 страница 10 из 27
Поделиться22017-09-24 11:43:17
кнопки вверх\вниз
<!--кнопки вверх вниз--> <div class="go-up" id='ToTop'><img src="http://funkyimg.com/i/2b941.png" border="0" /></div> <div class="go-down" id='OnBottom'><img src="http://funkyimg.com/i/2b942.png" border="0" /></div> <style> .go-up,.go-down { display:none; position:fixed; /*позиционируем*/ right:50px; /*указываем положение, если слева - left*/ z-index:9999; /*показываем поверх все элементов на странице*/ cursor:pointer; opacity:.7; /*прозрачность*/ margin-bottom:40px; /*отступ снизу (можно не указывать)*/ width:77px; /*ширина кнопки*/ height:21px; /*высота кнопки*/ } .go-up { bottom:130px; /*положение от низа окна браузера верхняя кнопка*/ } .go-down { bottom:80px; /*положение от низа окна браузера нижняя кнопка кнопка*/ } .go-down:hover,.go-up:hover { opacity:1; } </style> <!--кнопки вверх вниз--> <script type="text/javascript"> $(function(){ if ($(window).scrollTop()>="250") $("#ToTop").fadeIn("slow") $(window).scroll(function(){ if ($(window).scrollTop()<="250") $("#ToTop").fadeOut("slow") else $("#ToTop").fadeIn("slow") }); if ($(window).scrollTop()<=$(document).height()-"999") $("#OnBottom").fadeIn("slow") $(window).scroll(function(){ if ($(window).scrollTop()>=$(document).height()-"999") $("#OnBottom").fadeOut("slow") else $("#OnBottom").fadeIn("slow") }); $("#ToTop").click(function(){$("html,body").animate({scrollTop:0},"slow")}) $("#OnBottom").click(function(){$("html,body").animate({scrollTop:$(document).height()},"slow")}) }); </script>
Поделиться32017-09-26 15:21:07
/* CS5 Post status icons -------------------------------------------------------------*/ #pun-category1.category h2 { background: url(http://se.uploads.ru/qYMFg.png) no-repeat; height: 57px; width: 978px; border-style: none; margin-left: -27px; font-size:0 !important;} #pun-category2.category h2 { background: url(https://i.imgur.com/UStVG2e.jpg) no-repeat; height: 57px; width: 978px; border-style: none; margin-left: -27px; font-size:0 !important;} #pun-category3.category h2 { background: url(https://i.imgur.com/0JlNNw4.jpg) no-repeat; height: 57px; width: 978px; border-style: none; margin-left: -27px; font-size:0 !important;} #pun-category4.category h2 { background: url(https://i.imgur.com/PMmd4dH.jpg) no-repeat; height: 57px; width: 978px; border-style: none; margin-left: -27px; font-size:0 !important;}
Поделиться42017-09-26 16:11:16
хтмл низ
<script type="text/javascript">
function select_text(elem) {
if(window.getSelection) {
var s=window.getSelection();
if(s.setBaseAndExtent){
s.setBaseAndExtent(elem,0,elem,elem.innerText.length-1);
}
else {
var r=document.createRange();
r.selectNodeContents(elem);
s.removeAllRanges();
s.addRange(r);
}
}
else if(document.getSelection){
var s=document.getSelection();
var r=document.createRange();
r.selectNodeContents(elem);
s.removeAllRanges();
s.addRange(r);
}
else if(document.selection){
var r=document.body.createTextRange();
r.moveToElementText(elem);
r.select();
}
}
</script>
<script type="text/javascript">
var div = document.getElementById('pun-main').getElementsByTagName('div');
for(x in div){
if(div[x].className=='code-box'){
div[x].getElementsByTagName('strong')[0].innerHTML = '<a href="#" onclick="select_text(this.parentNode.parentNode.childNodes[1].getElementsByTagName(\'pre\')[0]); return false;">Выделить код</a>';
}
}
</script><script>
var oldIMG="<td id=\"button-image\" title=\"Вставить картинку\"><img onclick=\"bbcode('--')\" src=\"/i/blank.gif\"/><b><p style=\"z-index:20;position:absolute;height14px;margin:-15px 0 0 22px;\">2</p></b></td>"
$("#button-image").after(oldIMG);
</script><script>var a,L,epl=$("#main-reply"),str='<small id="plng" style="border:1px solid;padding:2px 3px;margin:0 20px 0 10px;">Написано символов: <b>00</b> </small>';epl.parents("fieldset").find("legend").prepend(str);function epl3(){a=epl.val().length;if(a>9){L=''}else{L='0'};$("#plng b").text(L+a)};epl3();$(".pl-quote").click(function (){setTimeout('epl3()',100)});epl.bind('mouseout mousemove keydown keypress keyup',function(e){epl3()});</script>
<script type="text/javascript">
var A=[1,2,3,4,5]
$(".post .post-author li").each(function (){
for(var i in A){if($(this).hasClass("pa-fld"+A[i])){
$(this).html($(this).html().replace(/^[^:]*:/,''));}};});
</script><script type="text/javascript">
function Transform_Code_Box_in_HTML(aX){
var TemLnk=aX.replace(/^(.*viewtopic\.php\?id=\d*).*$/ig,"$1");
var PstId=aX.replace(/^.*viewtopic\.php\?id=.*(#p\d+)$/ig,"$1");
var L=document.URL.replace(TemLnk,'');
if(L!=document.URL&&(L.slice(0,1)).search(/\d/ig)==-1 ){
L=$("div.topic "+PstId);
if(L.length==1){
var Lhtm=L.find(".post-content .code-box:first .scrollbox pre").text();
L.find(".post-content .code-box:first").replaceWith(Lhtm)
}}}
function Demo_HTML(Ts){var Ll=Ts.parents(".htmldemo").find(".code-box .scrollbox pre").text();
Ts.parents(".htmldemo").after('<div class="demHtml">'+Ll+'</div>');Ts.replaceWith(DemoButt0);
}
$(document).ready(function() {
$("#pun-viewtopic .post .code-box").each(function(){
if($(this).text().indexOf('<!--HTML-->')!=-1){
$(this).wrap('<div class="htmldemo"></div>')
$(this).replaceWith($('.htmldemo').text().split('<!--HTML-->')[1]);
}
});
});
</script><script type="text/javascript">
function select_text(elem) {
if(window.getSelection) {
var s=window.getSelection();
if(s.setBaseAndExtent){
s.setBaseAndExtent(elem,0,elem,elem.innerText.length-1);
}
else {
var r=document.createRange();
r.selectNodeContents(elem);
s.removeAllRanges();
s.addRange(r);
}
}
else if(document.getSelection){
var s=document.getSelection();
var r=document.createRange();
r.selectNodeContents(elem);
s.removeAllRanges();
s.addRange(r);
}
else if(document.selection){
var r=document.body.createTextRange();
r.moveToElementText(elem);
r.select();
}
}
</script>
<script type="text/javascript">
var div = document.getElementById('pun-main').getElementsByTagName('div');
for(x in div){
if(div[x].className=='code-box'){
div[x].getElementsByTagName('strong')[0].innerHTML = '<a href="#" onclick="select_text(this.parentNode.parentNode.childNodes[1].getElementsByTagName(\'pre\')[0]); return false;">пуш</a>';
}
}
</script><script type="text/javascript">
function Transform_Code_Box_in_HTML(aX){
var TemLnk=aX.replace(/^(.*viewtopic\.php\?id=\d*).*$/ig,"$1");
var PstId=aX.replace(/^.*viewtopic\.php\?id=.*(#p\d+)$/ig,"$1");
var L=document.URL.replace(TemLnk,'');
if(L!=document.URL&&(L.slice(0,1)).search(/\d/ig)==-1 ){
L=$("div.topic "+PstId);
if(L.length==1){
var Lhtm=L.find(".post-content .code-box:first .scrollbox pre").text();
L.find(".post-content .code-box:first").replaceWith(Lhtm)
}}}
function Demo_HTML(Ts){var Ll=Ts.parents(".htmldemo").find(".code-box .scrollbox pre").text();
Ts.parents(".htmldemo").after('<div class="demHtml">'+Ll+'</div>');Ts.replaceWith(DemoButt0);
}
$(document).ready(function() {
$("#pun-viewtopic .post .code-box").each(function(){
if($(this).text().indexOf('<!--HTML-->')!=-1){
$(this).wrap('<div class="htmldemo"></div>')
$(this).replaceWith($('.htmldemo').text().split('<!--HTML-->')[1]);
}
});
});
</script><style>.post-content legend.hide{display:none;}</style>
<script type="text/javascript">
//alert("A")
var SkL="\\[",SkR="\\]";
var patt = new Array()
patt[0] = SkL + "nic" + SkR + "([^" + SkL + SkR + "$]+)" + SkL + "/nic" + SkR;
patt[1] = SkL + "sta" + SkR + "([^" + SkL + SkR + "$]+)" + SkL + "/sta" + SkR;
patt[2] = SkL + "ava" + SkR + "([^" + SkL + SkR + "$]+)" + SkL + "/ava" + SkR;
patt[3] = SkL + "sgn" + SkR + "([^" + SkL + SkR + "]+)" + SkL + "/sgn" + SkR;$(".post-content").each(function (){
var contex = $(this).html();for (j=0; j < patt.length; j++){
var chang = '<legend class="hide ' + patt[j].substring(2,5) + '" >';//alert(chang)
var EndCh = '</legend>';
var reg_esp = new RegExp(patt[j],"igm");
contex=contex.replace(reg_esp,chang + "$1" + EndCh);//alert(contex)
}$(this).html(contex)
});
var pa_avtr='<li class="pa-avatar">';
var Avt_St='<img src="';
var Avt_End='"alt="Аватар"/>';
var PostSig_St='<dl class="post-sig"><dt><span>Подпись автора</span></dt><dd><p>';
var PostSig_End='</p></dd></dl>';$(".post legend.hide").each(function (){
var S=$(this).html();
var sta=$(this).parents(".post").find(".post-author .pa-title")
/*[nic]*/ if($(this).hasClass('nic')==true){$(this).parents(".post").find(".post-author .pa-author a").html(S);}
/*[sta]*/ if($(this).hasClass('sta')==true){$(this).parents(".post").find(".post-author .pa-title").html(S);}
/*[ava]*/ if($(this).hasClass('ava')==true){var ava=$(this).parents(".post").find(".post-author .pa-avatar")
if(ava.html()!=null){ava.html(Avt_St+S+Avt_End)}else $(this).parents(".post").find(".post-author .pa-title").after(pa_avtr+Avt_St+S+Avt_End+'</li>');}
/*[sgn]*/ if($(this).hasClass('sgn')==true){$(this).parents(".post").find(".post-content .post-sig").replaceWith("");
$(this).parents(".post").find(".post-content").append(PostSig_St+S+PostSig_End);}
});
</script><!-- Кнопка пиара -->
<style>.Myimge {position:absolute;margin-top:-0px;}</style>
<script type="text/javascript">
PiarNik="PR";
PiarPas="1111";
var L="<div id=\"PR_loginDiv\" style=\"display:none;\">\
<form id=\"form_login\" name=\"login\" method=\"post\" action=\"login.php?action=in\" onsubmit=\"return check_form()\">\
<fieldset>\
<input type=\"hidden\" name=\"form_sent\" value=\"1\"/>\
<input type=\"text\" id=\"fld1\" name=\"req_username\" size=\"21\" maxlength=\"25\"/>\
<input type=\"text\" id=\"fld2\" name=\"req_password\" size=\"7\" maxlength=\"16\"/>\
<input type=\"submit\" class=\"button\" name=\"login\"/>\
</fieldset>\
</form>\
</div>\
<li id=\"navpiar\"><span id=spMyimg><a onclick=\"PiarIn()\">РЕКЛАМА</a></span></li>";
if($("#navlogin").html()!=null){
$("#navlogin").after(L) //navlogin
$("#PR_loginDiv #fld1").val(PiarNik)
$("#PR_loginDiv #fld2").val(PiarPas)
function PiarIn () {$("#PR_loginDiv input[type='submit']").click();}
}
</script>
<!--КОНЕЦ--><!-- Разделение ников пользователей в теме запятой -->
<script>$('#topic-users-in a').prev('a').after(',');</script><!--обтекание изображения 2.4-->
<script language="javascript">
$(function(){
$('td#button-link').before('<td id="floatbut" style=\'background-image:url("http://s002.radikal.ru/i198/1009/43/f183caeae434.gif")\'></td>');
$('#floatbut, .vibor').click(function(){
$('div#float').toggle();});
$("div.post-content").map(function () {
text = $(this).html();
if(text.indexOf("[/float]") != -1) {
floats = /\[float=(.*?)\]([^\[]*)\[\/float\]/gi
$(this).html(text.replace(floats, "<span style='float: $1; margin: 15px; text-align: $1;'>$2</span>"));
}
}); });
</script>
<div id="float" style="display:none;background:#FFFFCC;border:1px solid black; width:auto; padding:8px; position:absolute; margin-top:-32%; margin-left:35%; z-index:20">
<div><strong>Направление обтекания</strong></div><br>
<div align="center">
<img class="vibor" src="http://s001.radikal.ru/i193/1009/96/695abc799ddb.png" title="left" onclick="bbcode('[float=left]', '[/float]')" />
<img class="vibor" src="http://s002.radikal.ru/i199/1009/ac/95c10fcc7d82.png" title="right" onclick="bbcode('[float=right]', '[/float]')" />
</div></div>
<!--КОНЕЦ--><!-- НОВЫЕ СООБЩЕНИЯ -->
<script type="text/javascript">
$('#pun-ulinks ul').prepend('<li class="item1"><a href="/search.php?action=show_new">Новые сообщения</a></li>');
</script>
<!-- КОНЕЦ НОВЫЕ СООБЩЕНИЯ --><!--Смена аватара, ника, подписи в посте-->
<script type="text/javascript">
//alert("A")
var SkL="\\[",SkR="\\]";
var patt = new Array()
patt[0] = SkL + "NIC" + SkR + "([^" + SkL + SkR + "$]+)" + SkL + "/NIC" + SkR;
patt[1] = SkL + "AVA" + SkR + "([^" + SkL + SkR + "$]+)" + SkL + "/AVA" + SkR;
patt[2] = SkL + "SGN" + SkR + "([^" + SkL + SkR + "]+)" + SkL + "/SGN" + SkR;$(".post-content").each(function (){
var contex = $(this).html();for (j=0; j < patt.length; j++){
var chang = '<legend class="hide ' + patt[j].substring(2,5) + '" >';//alert(chang)
var EndCh = '</legend>';
var reg_esp = new RegExp(patt[j],"igm");
contex=contex.replace(reg_esp,chang + "$1" + EndCh);//alert(contex)
}$(this).html(contex)
});
var pa_avtr='<li class="pa-avatar">';
var Avt_St='<img src="';
var Avt_End='"alt="Аватар"/>';
var PostSig_St='<dl class="post-sig"><dt><span>Подпись автора</span></dt><dd><p>';
var PostSig_End='</p></dd></dl>';$(".post legend.hide").each(function (){
var S=$(this).html();
var STA=$(this).parents(".post").find(".post-author .pa-title")
/*[NIC]*/ if($(this).hasClass('NIC')==true){$(this).parents(".post").find(".post-author .pa-author a").html(S);}
/*[AVA]*/ if($(this).hasClass('AVA')==true){var AVA=$(this).parents(".post").find(".post-author .pa-avatar")
if(AVA.html()!=null){AVA.html(Avt_St+S+Avt_End)}else $(this).parents(".post").find(".post-author .pa-title").after(pa_avtr+Avt_St+S+Avt_End+'</li>');}
/*[SGN]*/ if($(this).hasClass('SGN')==true){$(this).parents(".post").find(".post-content .post-sig").replaceWith("");
$(this).parents(".post").find(".post-content").append(PostSig_St+S+PostSig_End);}
});
</script>
<style>#avtrChang-area{position: absolute;right: 1%;top: 43px;} .post-content legend.hide{ display:none;} .punbb .pa-avatar img {max-width:180px;height:auto;}</style><style>#custom-change{background-image:url('http://i.imgur.com/RTGpaFJ.png');background-position:center;background-repeat:no-repeat;height:16px;line-height:0;padding:0;width:100%}</style>
<script type="text/javascript">
if((form=document.getElementById("form-buttons")))
form.getElementsByTagName("tr")[0].insertCell(14).innerHTML="<img src='/i/blank.gif' id='custom-change' title='Смена аватара, ника, подписи в посте' onclick=\"return changeVisibility('change', this);\" />"
</script>
<div class="container" id="change" style="display:none; position:absolute; left:1000px; margin-top:-428px; background:#bfc2c2; background: url('http://funkyimg.com/i/2b3i1.png') repeat; width:auto; padding:8px;">
<span style="cursor:pointer;" onclick="bbcode('');return changeVisibility('change', this)">Смена аватара</span><br>
<span style="cursor:pointer;" onclick="bbcode('');return changeVisibility('change', this)">Смена подписи</span><br>
<span style="cursor:pointer;" onclick="bbcode('');return changeVisibility('change', this)">Смена ника</span>
</div><!-- Регулировка размера шрифта в постах © Alex_63 -->
<style>
.FNTslider {
border-radius: 4px;
position:relative;z-index:1000;
background: #9A9186;
width: 110px;
height: 5px;
margin: 3px 5px;
border: solid 1px #ccc;
float: right;
margin-right: 7%;
}
.FNTslider .before {
height: 5px;
border: solid 1px transparent;
border-right: none 0;
border-radius: 4px 0 0 4px;
position: absolute;
background: #5D2922;
margin-top: -1px;
}
.FNTslider .thumb {
width: 8px;
height: 13px;
border-radius: 3px;
position: relative;
top: -4px;
background: #7C372F;
cursor: pointer;
}
</style>
<script type="text/javascript" src="http://forumstatic.ru/files/0015/c4/3f/31001.js"></script><!--аватар по умолчанию -->
<script type="text/javascript">
var DefAvtr="http://funkyimg.com/i/2bFPE.png"; //Для Юзера
var GuestAvtr="http://funkyimg.com/i/2bFPF.png";//Для Гостя
$("li.pa-title").each(function(){
var b = DefAvtr;if($(this).text()=='Гость')b = GuestAvtr;
var s='<li class="pa-avatar item2"><img class="defavtr" src="'+b+'" alt="Аватар"/></li>';
if (($(this).parent("ul").find("li.pa-avatar").html())==null){$(this).after(s);};});
</script><!--сменить название полей сообщения и уважение-->
<script type="text/javascript">
li=document.getElementsByTagName("li")
f=0
while(li[++f]){
s=li[f].innerHTML
if((p=s.indexOf("Сообщений")) != -1) li[f].innerHTML=s.substring(0,p)+"<b>words</b>"+s.substring(p+9)
}
</script><script type="text/javascript">
var nWRD="<b>karma</b>";
function setRespecNew(){
$(".post .pa-respect a[href^='/respect.php?']").each(function (){
$(this).html(nWRD);});}
function TestRespect(){
if($(".post .pa-respect:contains('Репутация')").length){setRespecNew();return;
}else {timerID = setTimeout("TestRespect()",110);return;}
}TestRespect()
</script>
<!--сменить название полей сообщения и уважение --><script type="text/javascript"><!--Своя картинка в каждую категорию -->
$(document).ready(function(){
myarray=new Array(
"1", "http://sf.uploads.ru/l4P9c.png",
"2", "http://funkyimg.com/i/2b93N.png",
"3", "http://funkyimg.com/i/2b93P.png",
"4", "http://funkyimg.com/i/2b93Q.png",
"5", "http://funkyimg.com/i/2b93R.png",
"6", "http://funkyimg.com/i/2b93S.png",
"Статистика форума", "СТАТИСТИКА.ПНГ"
)
$("#pun-index div.category h2,#pun-index #pun-stats h2").each(function (i) {
for(q=0;q<myarray.length;q++){
var cssObj = {
"height":"27px",
"width":"900",
"margin-left":"-15px",
"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><!--кнопки вверх вниз-->
<div class="go-up" id='ToTop'><img src="http://s5.uploads.ru/t/siR4g.png" border="0" /></div>
<div class="go-down" id='OnBottom'><img src="http://s6.uploads.ru/DLT87.png" border="0" /></div>
<style>
.go-up,.go-down {
display:none;
position:fixed; /*позиционируем*/
right:50px; /*указываем положение, если слева - left*/
z-index:9999; /*показываем поверх все элементов на странице*/
cursor:pointer;
opacity:.7; /*прозрачность*/
margin-bottom:40px; /*отступ снизу (можно не указывать)*/
width:77px; /*ширина кнопки*/
height:21px; /*высота кнопки*/
}
.go-up {
bottom:130px; /*положение от низа окна браузера верхняя кнопка*/
}
.go-down {
bottom:80px; /*положение от низа окна браузера нижняя кнопка кнопка*/
}
.go-down:hover,.go-up:hover {
opacity:1;
}
</style>
<!--кнопки вверх вниз-->
<script type="text/javascript">
$(function(){
if ($(window).scrollTop()>="250") $("#ToTop").fadeIn("slow")
$(window).scroll(function(){
if ($(window).scrollTop()<="250") $("#ToTop").fadeOut("slow")
else $("#ToTop").fadeIn("slow")
});
if ($(window).scrollTop()<=$(document).height()-"999") $("#OnBottom").fadeIn("slow")
$(window).scroll(function(){
if ($(window).scrollTop()>=$(document).height()-"999") $("#OnBottom").fadeOut("slow")
else $("#OnBottom").fadeIn("slow")
});
$("#ToTop").click(function(){$("html,body").animate({scrollTop:0},"slow")})
$("#OnBottom").click(function(){$("html,body").animate({scrollTop:$(document).height()},"slow")})
});
</script><!-- спойлер наград на Rusff в Профиле, в Топике -->
<style>
.post-author-Sp{
/*background-color:#989ca2!important;*/
}
img.aw{
}
ul.wrapper{
margin-left:-15px;
width:180px!important;
display:none;
margin-top: -15px;
}
ul.wrapper,
ul.wrapper li.pa-awards{
border-color:transparent;
}
</style>
<script>
// кнопка - ссылка на Картинку
var Img="http://funkyimg.com/i/2b94E.png";wrapp1="<li class='post-author-Sp'><img class=aw style='cursor:pointer' src='";
wrappEnd="'><ul class=wrapper></ul></li>";
wrapp1=wrapp1+Img+wrappEnd;$(window).load(function () {
$(".post .post-author .pa-awards").each(function() {
if($(this).css("display")!="none"){
$(this).before(wrapp1);a=$(this).parents('.post').find('.post-author-Sp ul')
$(this).appendTo(a)
}
});});
$(".post .post-author-Sp ").live("click", function(){
$(this).find('ul:first').toggle('slow')
});</script>
<!--Конец//=спойлер наград в Профиле, в Топике--><!-- ВЫДЕЛИТЕЛЬ КОДА -->
<script type="text/javascript">
function select_text(elem) {
if(window.getSelection) {
var s=window.getSelection();
if(s.setBaseAndExtent){
s.setBaseAndExtent(elem,0,elem,elem.innerText.length-1);
}
else {
var r=document.createRange();
r.selectNodeContents(elem);
s.removeAllRanges();
s.addRange(r);
}
}
else if(document.getSelection){
var s=document.getSelection();
var r=document.createRange();
r.selectNodeContents(elem);
s.removeAllRanges();
s.addRange(r);
}
else if(document.selection){
var r=document.body.createTextRange();
r.moveToElementText(elem);
r.select();
}
}
</script><script type="text/javascript">
var div = document.getElementById('pun-main').getElementsByTagName('div');
for(x in div){
if(div[x].className=='code-box'){
div[x].getElementsByTagName('strong')[0].innerHTML = '<a href="#" onclick="select_text(this.parentNode.parentNode.childNodes[1].getElementsByTagName(\'pre\')[0]); return false;">жмякни</a>';
}
}
</script><!--Не отображать названия доп.полей-->
<script type="text/javascript">
var A=[1,2,3,4,5]
$(".post .post-author li").each(function (){
for(var i in A){if($(this).hasClass("pa-fld"+A[i])){
$(this).html($(this).html().replace(/^[^:]*:/,''));}};});
</script><!--дополнительные смайлы © Romych-->
<style type="text/css">
/* вкладки доп смайлов */
#wrapper {width: 600px;}
ul.tabs {height: 25px;line-height: 20px;margin: 0 0 3px;list-style: none;}
ul.tabs li {float: left;margin-right: 1px; cursor:pointer;}
ul.tabs li a {color:#0a0502; cursor:pointer; display: block;margin-bottom: -1px; padding: 0 14px 1px;position: relative; text-decoration: none; width: 84px;}
ul.tabs li a:hover {color:#0a0502; padding: 0 14px; background-position: -652px -31px; text-decoration:none;}
ul.tabs li.tab-current a {color:#0a0502; padding: 0px 14px 2px;border:medium hidden;line-height: 22px;background-position: -652px -62px;}
ul.tabs li.tab-current a:hover {color: #0a0502;}
div.t2,div.t3 {display: none;width: 450px;}
</style>
<!--дополнительные смайлы © Romych--><script language="javascript">
$(document).ready(function() {
if($('#smilies-block').length==0) return false;
$('#smilies-block').addClass('t1');
function abc(){/*==123==;
<div id="wrapper">
<ul class="tabs tabs1"><li class="t1 tab-current"><a>Первый набор</a></li><li class="t2"><a>Второй набор</a></li><li class="t3"><a>Третий набор</a></li></ul>
<div class="t2"><p></p></div><div class="t3"><p><br></p></div>
</div> ==123==;*/} abc = abc.toString().split('==123==;')[1];
$(abc).prependTo('#smilies-area');
function abc1(){//Второй Блок Смайлов;
/*==123==;
http://smayly.ru/gallery/small/VKontakte/1.png
http://smayly.ru/gallery/small/VKontakte/D83DDE15.png
http://smayly.ru/gallery/small/VKontakte/7.png
http://smayly.ru/gallery/small/VKontakte/19.png
http://smayly.ru/gallery/small/VKontakte/D83DDE2E.png
http://smayly.ru/gallery/small/VKontakte/8.png
http://smayly.ru/gallery/small/VKontakte/14.png
http://smayly.ru/gallery/small/VKontakte/D83DDE16.png
http://smayly.ru/gallery/small/VKontakte/16.png
http://smayly.ru/gallery/small/VKontakte/5.png
http://smayly.ru/gallery/small/VKontakte/D83DDE24.png
http://smayly.ru/gallery/small/VKontakte/D83DDE01.png
http://smayly.ru/gallery/small/VKontakte/D83DDE31.png
http://smayly.ru/gallery/small/VKontakte/20.png
http://smayly.ru/gallery/small/VKontakte/D83DDE04.png
http://smayly.ru/gallery/small/VKontakte/D83DDE26.png
http://smayly.ru/gallery/small/VKontakte/24.png
http://smayly.ru/gallery/small/VKontakte/2.png
http://smayly.ru/gallery/small/VKontakte/6.png
http://smayly.ru/gallery/small/VKontakte/25.png
http://smayly.ru/gallery/small/VKontakte/D83DDE36.png
http://smayly.ru/gallery/small/VKontakte/13.png
http://smayly.ru/gallery/small/VKontakte/2764.png
http://smayly.ru/gallery/small/VKontakte/22.png
http://smayly.ru/gallery/small/VKontakte/D83DDE02.png
http://smayly.ru/gallery/small/VKontakte/3.png
http://smayly.ru/gallery/small/VKontakte/D83DDE11.png
http://smayly.ru/gallery/small/VKontakte/18.png
http://smayly.ru/gallery/small/VKontakte/17.png
http://smayly.ru/gallery/small/VKontakte/D83DDE25.png
http://smayly.ru/gallery/small/VKontakte/D83DDE1E.png
http://smayly.ru/gallery/small/VKontakte/D83DDE13.png
http://smayly.ru/gallery/small/VKontakte/21.png
http://smayly.ru/gallery/small/VKontakte/10.png
http://smayly.ru/gallery/small/VKontakte/D83DDC7F.png
http://smayly.ru/gallery/small/VKontakte/4.png
http://smayly.ru/gallery/small/VKontakte/D83DDE1F.png
http://smayly.ru/gallery/small/VKontakte/12.png
http://smayly.ru/gallery/small/VKontakte/D83DDE18.png
http://smayly.ru/gallery/small/VKontakte/D83DDE34.png
http://smayly.ru/gallery/small/VKontakte/9.png
http://f5.s.qip.ru/13SunXlQ6.png
http://f3.s.qip.ru/13SunXlQ5.png
http://f2.s.qip.ru/13SunXlQ4.png
http://f5.s.qip.ru/13SunXlQ3.png
http://f5.s.qip.ru/13SunXlQ2.png
http://f3.s.qip.ru/13SunXlQ1.png
http://smayly.ru/gallery/small/VKontakte/D83DDD1E.png
http://smayly.ru/gallery/small/VKontakte/D83CDF40.png
http://smayly.ru/gallery/small/VKontakte/D83DDC51.png
http://smayly.ru/gallery/small/VKontakte/D83CDF89.png
http://smayly.ru/gallery/small/VKontakte/2600.png
http://smayly.ru/gallery/small/VKontakte/D83DDC36.png
http://smayly.ru/gallery/small/VKontakte/D83DDC24.png
http://smayly.ru/gallery/small/VKontakte/D83DDC83.png
http://smayly.ru/gallery/small/VKontakte/D83DDC7B.png
http://smayly.ru/gallery/small/VKontakte/D83DDE4A.png
http://smayly.ru/gallery/small/VKontakte/D83DDE48.png
http://smayly.ru/gallery/small/VKontakte/D83DDE49.png
http://smayly.ru/gallery/small/VKontakte/D83DDCA1.png
http://smayly.ru/gallery/small/VKontakte/D83CDF78.png
http://smayly.ru/gallery/small/VKontakte/D83DDC28.png
http://smayly.ru/gallery/small/VKontakte/D83CDF3C.png
http://smayly.ru/gallery/small/VKontakte/D83DDC90.png
http://smayly.ru/gallery/small/VKontakte/2714.png
http://smayly.ru/gallery/small/VKontakte/274C.png
http://smayly.ru/gallery/small/VKontakte/2757.png
http://smayly.ru/gallery/small/VKontakte/2753.png
http://smayly.ru/gallery/small/VKontakte/32.png
http://smayly.ru/gallery/small/VKontakte/270B.png
http://smayly.ru/gallery/small/VKontakte/30.png
http://smayly.ru/gallery/small/VKontakte/31.png
http://smayly.ru/gallery/small/VKontakte/D83DDC46.png
http://smayly.ru/gallery/small/VKontakte/28.png
http://smayly.ru/gallery/small/VKontakte/29.png
http://smayly.ru/gallery/small/VKontakte/D83DDC49.png
http://smayly.ru/gallery/small/VKontakte/D83DDE4C.png
http://smayly.ru/gallery/small/VKontakte/D83DDE4F.png
http://smayly.ru/gallery/small/VKontakte/D83CDF74.png
http://smayly.ru/gallery/small/VKontakte/D83DDC27.png
http://smayly.ru/gallery/small/VKontakte/D83DDCA5.png
http://smayly.ru/gallery/small/VKontakte/D83DDD2A.png
http://smayly.ru/gallery/small/VKontakte/D83CDFA7.png
http://smayly.ru/gallery/small/VKontakte/D83CDF56.png
http://smayly.ru/gallery/small/VKontakte/D83DDC99.png
http://smayly.ru/gallery/small/VKontakte/D83CDF6A.png
http://smayly.ru/gallery/small/VKontakte/2728.png
http://smayly.ru/gallery/small/VKontakte/D83CDF6D.png
http://smayly.ru/gallery/small/VKontakte/D83CDF53.png
http://smayly.ru/gallery/small/VKontakte/D83CDF39.png
http://smayly.ru/gallery/small/VKontakte/D83DDC39.png
http://smayly.ru/gallery/small/VKontakte/D83DDD25.png
http://smayly.ru/gallery/small/VKontakte/D83CDF6B.png
http://smayly.ru/gallery/small/VKontakte/D83DDC6F.png
http://smayly.ru/gallery/small/VKontakte/D83DDC8E.png
http://smayly.ru/gallery/small/VKontakte/3030.png
http://f2.s.qip.ru/13SunXlQb.png
http://f1.s.qip.ru/13SunXlQa.png
http://f6.s.qip.ru/13SunXlQ9.png
http://f4.s.qip.ru/13SunXlQ8.png
http://f5.s.qip.ru/13SunXlQ7.png
==123==;*/} abc1 = abc1.toString().split('==123==;')[1];
var bb = "\'["+'img'+"]\'+this.src+\'["+'/img'+"]\'";
var tgEnd = '" onclick="smile('+bb+')" />';
function abc2(){//Третий Блок Смайлов;
/*==123==;
http://i.imgur.com/B6eQZ1F.gif
http://i.imgur.com/JCxWyPL.gif
http://i.imgur.com/XxvEWRi.gif
http://i.imgur.com/uwC4Ada.gif
http://i.imgur.com/6FH4XzX.gif
http://i.imgur.com/c3Ab1.gif
http://i.imgur.com/9t3RghD.png
http://i.imgur.com/Z8Utzcu.gif
http://i.imgur.com/FVKzS5A.gif
http://i.imgur.com/1HcZUp5.gif
http://i.imgur.com/1wpiDAf.gif
http://i.imgur.com/egzrl4E.gif
http://i.imgur.com/7o8Cfkw.gif
http://i.imgur.com/AxF9QjM.gif
http://i.imgur.com/fHIDukv.gif
http://i.imgur.com/ZLpV8it.gif
http://i.imgur.com/GGY4RKR.gif
http://i.imgur.com/NjGuTp3.gif
http://f5.s.qip.ru/LHJwjkxG.gif
http://i.imgur.com/ogzbXjG.gif
http://i.imgur.com/shbASLu.gif
http://i.imgur.com/6IDis7q.gif
http://i.imgur.com/GAwNDDh.gif
http://i.imgur.com/ajygCBG.gif
http://i.imgur.com/OuLlc.gif
http://i.imgur.com/HHZmeLT.gif
http://i.imgur.com/8xUys.gif
http://i.imgur.com/0IzfJ.gif
http://i.imgur.com/IdBDx.gif
http://f6.s.qip.ru/hT9jRRgH.gif
http://f6.s.qip.ru/hT9jRRgO.gif
http://f6.s.qip.ru/oq4QIakx.gif
http://f6.s.qip.ru/oq4QIakw.gif
http://f5.s.qip.ru/oq4QIakv.gif
http://f4.s.qip.ru/2Q3rLovl.gif
http://f5.s.qip.ru/oq4QIaku.gif
http://f6.s.qip.ru/oq4QIakt.gif
http://f6.s.qip.ru/oq4QIaks.png
http://f6.s.qip.ru/oq4QIakr.gif
http://f5.s.qip.ru/oq4QIakq.gif
http://f4.s.qip.ru/2Q3rLov8.gif
http://f4.s.qip.ru/2Q3rLovb.gif
http://f4.s.qip.ru/2Q3rLova.gif
http://f6.s.qip.ru/2Q3rLovc.gif
http://f5.s.qip.ru/2Q3rLovd.gif
http://f4.s.qip.ru/2Q3rLove.gif
http://f4.s.qip.ru/2Q3rLovf.gif
http://f5.s.qip.ru/2Q3rLovh.gif
http://f6.s.qip.ru/2Q3rLovk.gif
http://f6.s.qip.ru/2Q3rLovm.gif
http://f4.s.qip.ru/2Q3rLovj.gif
http://i.imgur.com/EWhEDpo.gif
http://i.imgur.com/anfnDlH.gif
http://i.imgur.com/R0lhkLl.gif
http://i.imgur.com/hwFAf2b.gif
http://i.imgur.com/Li8FzhM.gif
http://i.imgur.com/0qS7gdz.gif
http://i.imgur.com/ZIbdVgM.png
http://i.imgur.com/hSIYerl.gif
http://i.imgur.com/r7oHs0s.gif
http://i.imgur.com/seXxuRS.gif
http://i.imgur.com/YE0fdX2.gif
http://i.imgur.com/E6X6dl1.gif
http://i.imgur.com/vy7HqHU.gif
http://i.imgur.com/Ls3tK0f.gif
http://i.imgur.com/btPdxO1.gif
http://i.imgur.com/Jx5PLhU.gif
http://i.imgur.com/XNBJ1ZR.gif
http://i.imgur.com/H7fJSnx.gif
http://i.imgur.com/HpzyRZI.gif
http://i.imgur.com/BTRFzEL.gif
http://i.imgur.com/Xoy0N4W.gif
http://i.imgur.com/3ydNME9.gif
==123==;*/} abc2 = abc2.toString().split('==123==;')[1];
$('#button-smile').one('click',function(){
abc1=abc1.replace(/^(http:.*?)$/gim,'<img src="$1'+tgEnd);
abc2=abc2.replace(/^(http:.*?)$/gim,'<img src="$1'+tgEnd);
$(abc1).prependTo('#smilies-area div.t2');
$(abc2).prependTo('#smilies-area div.t3');
});
$('ul.tabs.tabs1 li').click(function(){
var thisClass = this.className.slice(0,2);
$('div.t1, div.t2, div.t3').hide();
$('div.' + thisClass).fadeToggle('slow');
$('ul.tabs.tabs1 li').removeClass('tab-current');
$(this).addClass('tab-current');
return false;
}); });
</script>
Поделиться52017-09-26 16:13:14
<!--сменить название полей сообщения и уважение-->
<script type="text/javascript">
li=document.getElementsByTagName("li")
f=0
while(li[++f]){
s=li[f].innerHTML
if((p=s.indexOf("Сообщений")) != -1) li[f].innerHTML=s.substring(0,p)+"<b>words</b>"+s.substring(p+9)
}
</script><script type="text/javascript">
var nWRD="<b>karma</b>";
function setRespecNew(){
$(".post .pa-respect a[href^='/respect.php?']").each(function (){
$(this).html(nWRD);});}
function TestRespect(){
if($(".post .pa-respect:contains('Репутация')").length){setRespecNew();return;
}else {timerID = setTimeout("TestRespect()",110);return;}
}TestRespect()
</script>
<!--сменить название полей сообщения и уважение --><script type="text/javascript"><!--Своя картинка в каждую категорию -->
$(document).ready(function(){
myarray=new Array(
"1", "http://sf.uploads.ru/l4P9c.png",
"2", "http://funkyimg.com/i/2b93N.png",
"3", "http://funkyimg.com/i/2b93P.png",
"4", "http://funkyimg.com/i/2b93Q.png",
"5", "http://funkyimg.com/i/2b93R.png",
"6", "http://funkyimg.com/i/2b93S.png",
"Статистика форума", "СТАТИСТИКА.ПНГ"
)
$("#pun-index div.category h2,#pun-index #pun-stats h2").each(function (i) {
for(q=0;q<myarray.length;q++){
var cssObj = {
"height":"27px",
"width":"900",
"margin-left":"-15px",
"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>
Поделиться62017-09-26 16:55:32
c36a0d
487765
Поделиться72017-09-26 18:14:10
пппппппппппппппппп
ааааааааааааааааааааааааааа
Поделиться82017-09-28 21:05:26
ищешь в хтмл-верх код
<!-- Скрипт смены имиджа - часть I -->
<link id="iNFpanel" rel="stylesheet" href="http://forumstatic.ru/files/000f/05/e1/37300.css" type="text/css"/>
<script src="http://forumstatic.ru/files/000f/05/e1/37375.js"></script>
<!-- Конец скрипта -->
http://forumstatic.ru/files/000f/05/e1/37300.css - открой ссылку и вставь всё, что там написано в блокнот
должно быть это:
/************************************************************* A - SETUP change_ava_nic_sta_sgn **************************************************************/ #My.My,#stTs { background-color:transparent!important; background-image:none!important; border:none transparent 0!important; } #imgNIK-SIG { cursor:pointer; cursor:hand; position:absolute; z-index:1000; margin-top: 10px; margin-left:-30px; z-index:100; border:4px solid #87a197; } #avtrChang-area{ position: absolute; right: 1%;top: 35px; width:150px!important; } #stTs { display:none;/**/ position:absolute; z-index:4; margin-top: -10px; margin-left:-142px; width:95px!important; height:229px; border-collapse: collapse; padding: 5px; text-align: left; } img.iblank { cursor:pointer; cursor:hand; border:transparent solid 1px; position:relative; width:95px; z-index:100; margin-left: -5px; margin-top: -1px; margin-right:-20px; } img.iblank.NIC { margin-top: 25px; height:17px } img.iblank.STA { height:17px } img.iblank.AVA { height:17px } img.iblank.Galleri { height:57px } img.iblank.SGN { height:17px } img.iblank.mem { height:34px } .punbb .pa-author img, .punbb .pa-title img { height:auto; max-width:180px; } .post-content .hide_Nic-SIG{ display:none; }
ищешь
border:4px solid #87a197;
}
заменяешь цвет на свой под диз
сохраняешь блокнот в формате .css
идёшь грузить на форум: админка - файлы
копируешь ссылку на файл и заменяешь эту ссылку http://forumstatic.ru/files/000f/05/e1/37300.css в коде своей
Поделиться92017-09-28 21:12:11
ищешь в хтмл-верх код
<!-- Скрипт смены имиджа - часть I -->
<link id="iNFpanel" rel="stylesheet" href="http://forumstatic.ru/files/000f/05/e1/37300.css" type="text/css"/>
<script src="http://forumstatic.ru/files/000f/05/e1/37375.js"></script>
<!-- Конец скрипта -->
http://forumstatic.ru/files/000f/05/e1/37375.js - открой ссылку и вставь всё, что там написано в блокнот
должно быть это:
//======================КУКИС - ФУНКЦИЯ:"=V1.03.от 06.06.2011=============================// // В ИЕ максимальный Объём куков на Домен = 4096.Байт //======== Упаковка - ужатие encodeURIComponent ==============================// function pakCodeURI (sPak) { //alert("Длина входной URI-строки >"+sPak.length) sPak=sPak.replace(/^([^%])/g,"<$1");//alert(sPak) sPak=sPak.replace(/(%(?:[\d]|[A-F]){2})(?!%)/mg,"$1<"); sPak=sPak.replace(/(<[^%<]+)/mg,"$1>");//alert(sPak) //alert("<Англ. Текст> Выделен="+ sPak.length)//alert(sPak) sPak=sPak.replace(/%D0/mg,"%G"); sPak=sPak.replace(/%D1/mg,"%b"); sPak=sPak.replace(/%20/mg,"%c"); sPak=sPak.replace(/%B0/mg,"%d"); sPak=sPak.replace(/%BE/mg,"%e"); sPak=sPak.replace(/%80/mg,"%f"); sPak=sPak.replace(/%81/mg,"%g"); sPak=sPak.replace(/%82/mg,"%h"); sPak=sPak.replace(/%83/mg,"%i"); sPak=sPak.replace(/%BD/mg,"%j"); sPak=sPak.replace(/%B5/mg,"%k"); sPak=sPak.replace(/%B8/mg,"%m"); sPak=sPak.replace(/%BB/mg,"%n"); sPak=sPak.replace(/%B1/mg,"%o"); sPak=sPak.replace(/%BA/mg,"%p"); sPak=sPak.replace(/%BE/mg,"%q"); sPak=sPak.replace(/%B9/mg,"%r"); sPak=sPak.replace(/%BF/mg,"%s"); sPak=sPak.replace(/%8B/mg,"%t"); sPak=sPak.replace(/%2C/mg,"%u"); sPak=sPak.replace(/%B2/mg,"%v"); sPak=sPak.replace(/%B4/mg,"%w"); sPak=sPak.replace(/%8F/mg,"%x"); sPak=sPak.replace(/%09/mg,"%y"); sPak=sPak.replace(/%G%e%b/mg,"%H"); sPak=sPak.replace(/%G%e%G/mg,"%Y"); sPak=sPak.replace(/%G%m%G/mg,"%I"); sPak=sPak.replace(/%G%j%b%t/mg,"%J"); sPak=sPak.replace(/%G%j%u/mg,"%K"); sPak=sPak.replace(/%G%j/mg,"%L"); sPak=sPak.replace(/%G%k/mg,"%M"); sPak=sPak.replace(/%G%d/mg,"%N"); sPak=sPak.replace(/%G%9/mg,"%O"); sPak=sPak.replace(/%M%N%K/mg,"%P"); sPak=sPak.replace(/%G%A/mg,"%R"); sPak=sPak.replace(/%G%s/mg,"%S"); sPak=sPak.replace(/%G%m/mg,"%T"); sPak=sPak.replace(/%G%r/mg,"%X"); sPak=sPak.replace(/%b%f/mg,"%U"); sPak=sPak.replace(/%b%h/mg,"%W"); sPak=sPak.replace(/%M%G/mg,"%Z"); sPak=sPak.replace(/%b%8/mg,"%V"); sPak=sPak.replace(/%G%B/mg,"%&"); sPak=sPak.replace(/%u%O/mg,"%#"); sPak=sPak.replace(/%G%v/mg,"%a"); sPak=sPak.replace(/%b%g/mg,"%z"); sPak=sPak.replace(/%&C/mg,"%]"); //alert("2(До % delete > "+sPak.length)//alert(sPak) sPak=sPak.replace(/%/mg,"");//alert("Ужатие URI>"+sPak.length)//alert(">>>"+sPak) return sPak; } //End/Упаковка - ужатие encodeURIComponent //======== Распаковка Ужатого encodeURIComponent ================== function unpakCodeURI (str_unpak) {//alert("function unpakCodeURI"+str_unpak) str_unpak=str_unpak.replace(/(^(?:[^<>]+)(?:<|$))|(>(?:[^<>]+)(?:<|$))/mg,function(a,b,c) { //alert("a23="+a) a=a.replace(/\]/g,"&C"); a=a.replace(/z/g,"bg"); a=a.replace(/a/g,"Gv"); a=a.replace(/#/g,"uO"); a=a.replace(/&/g,"GB"); a=a.replace(/\V/g,"b8"); a=a.replace(/Z/g,"MG"); a=a.replace(/W/g,"bh"); a=a.replace(/U/g,"bf"); a=a.replace(/X/g,"Gr"); a=a.replace(/T/g,"Gm"); a=a.replace(/S/g,"Gs"); a=a.replace(/R/g,"GA"); a=a.replace(/P/g,"MNK"); a=a.replace(/O/g,"G9"); a=a.replace(/N/g,"Gd"); a=a.replace(/M/g,"Gk"); a=a.replace(/L/g,"Gj"); a=a.replace(/K/g,"Gju"); a=a.replace(/J/g,"Gjbt"); a=a.replace(/I/g,"GmG"); a=a.replace(/Y/g,"GeG"); a=a.replace(/H/g,"Geb"); a=a.replace(/y/g,"09"); a=a.replace(/x/g,"8F"); a=a.replace(/w/g,"B4"); a=a.replace(/v/g,"B2"); a=a.replace(/u/g,"2C"); a=a.replace(/t/g,"8B"); a=a.replace(/s/g,"BF"); a=a.replace(/r/g,"B9"); a=a.replace(/q/g,"BE"); a=a.replace(/p/g,"BA"); a=a.replace(/o/g,"B1"); a=a.replace(/n/g,"BB"); a=a.replace(/m/g,"B8"); a=a.replace(/k/g,"B5"); a=a.replace(/j/g,"BD"); a=a.replace(/i/g,"83"); a=a.replace(/h/g,"82"); a=a.replace(/g/g,"81"); a=a.replace(/f/g,"80"); a=a.replace(/e/g,"BE"); a=a.replace(/d/g,"B0"); a=a.replace(/c/g,"20"); a=a.replace(/b/g,"D1"); a=a.replace(/G/g,"D0"); a=a.replace(/([^%]*?)((?:[\d]|[A-F]){2})/g,"$1%$2");// //alert("T0 "+a.length)//alert("a0="+a) return a;}); str_unpak=str_unpak.replace(/<|>/gm,""); //alert("URI-Code >"+str_unpak.length)//alert(str_unpak) return decodeURIComponent(str_unpak); } // End/Распаковка для(decodeURIComponent) ужатого encodeURIComponent==// //================= БИБЛИОТЕКА КУКИСОВ ============== // // Библиотека для кукисов function setCookie3(name, value, expires, path, domain, secure) { if (!name || !value) return false; //alert("HELLO>>"+value) var today = new Date(); today.setTime( today.getTime() ); var expires_date = new Date( today.getTime() + (expires) ); value = encodeURIComponent(value); if (value.length > 1000) value="1$"+pakCodeURI(value); var str = encodeURIComponent(name) + '=' + value;//alert(value) if (expires) str += '; expires=' + expires_date.toGMTString(); if (path) str += '; path=' + path; if (domain) str += '; domain=' + domain; if (secure) str += '; secure'; document.cookie = str; return true; } function getCookie3(name) { name= encodeURIComponent(name) var pattern = "(?:; )?" + name + "=([^;]*);?"; var regexp = new RegExp(pattern,"g"); if (regexp.test(document.cookie)){ NumPak = RegExp["$1"].replace(/^((?:\d{1,2})\$)?([^\$]*)$/g,"$1") if(NumPak == "1$" ) return unpakCodeURI(RegExp["$2"]); return decodeURIComponent(RegExp["$2"]) } return false } function deleteCookie3( name, path, domain ) { if ( getCookie3( name ) ) name= encodeURIComponent(name);document.cookie = name + '=' + ( ( path ) ? ';path=' + path : '') + ( ( domain ) ? ';domain=' + domain : '' ) + ';expires=Thu, 01-Jan-1970 00:00:01 GMT'; } function testNumLast(str, trp) { //test не цифры(или конца строки) за последней цифрой var s=str.lastIndexOf(trp);if(s!=-1){var s=str.substring(s+trp.length,s+trp.length+1); if (s.search(/\d/gi)==-1){return true}else {return false};}else {return false} } //End//Библиотека Кукисов /****************************************************************************************** ******************************************************************************************/ //%%%%%%%%%% ОБСЛУЖИВАНИЕ BB-ТЕГОВ В ПОСТАХ И ФОРМЕ ОТВЕТА %%%%%%%%%%%%%%%%%%%%%%%%%%%%%// //========ФУНКЦИЯ Проверки и Установки Допуска к функции смены НИКА,СТАТУСА,ПОДПИСИ. ======// var Dopusk=0,DopuskList = new Array(); function OnSmenaImage(RazdeL,myarray){ st = document.getElementById("pun-crumbs1").innerHTML; if($("#navlogin").html()!=null){UserLogin = " "}; if (st.indexOf(RazdeL)!= -1){Dopusk = 1; for(q=0;q<myarray.length;q++){ DopuskList.push(myarray[q]); if (myarray[q]== UserLogin)Dopusk = 0;} } } //======= end OnSmenaImage(RazdeL,myarray){} /****************************************************************************************** ТЕЛО ОСНОВНОЙ ФУНЦИИ ******************************************************************************************/ function StartNIZ(){ //======= Обслуживание BB-Тегов в Постах =====================// var SkL="\\[",SkR="\\]"; var patt = new Array() patt[0] = SkL + "NIC" + SkR + "([^" + SkL + SkR + "$]+)" + SkL + "/NIC" + SkR; patt[1] = SkL + "STA" + SkR + "([^" + SkL + SkR + "$]+)" + SkL + "/STA" + SkR; patt[2] = SkL + "AVA" + SkR + "([^" + SkL + SkR + "$]+)" + SkL + "/AVA" + SkR; patt[3] = SkL + "SGN" + SkR + "([^" + SkL + SkR + "]+)" + SkL + "/SGN" + SkR; $(".post-content").each(function (){ var contex = $(this).html(); for (j=0; j < patt.length; j++){ var tags="abbr"; if(j==3)tags="div"; var chang = '<'+tags+' class="hide_Nic-SIG ' + patt[j].substring(2,5) + '" >';//alert(chang) var EndCh = '</'+tags+'>'; var reg_esp = new RegExp(patt[j],"igm"); contex=contex.replace(reg_esp,chang + "$1" + EndCh);//alert(contex) }$(this).html(contex) }); var pa_avtr='<li class="pa-avatar">'; var Avt_St='<img src="'; var Avt_End='"alt="Аватар"/>'; var PostSig_St='<dl class="post-sig"><dt><span>Подпись автора</span></dt><dd><p>'; var PostSig_End='</p></dd></dl>'; var DpskTek; $(".post").each(function (){ var NIk=$(this).find(".post-author .pa-author a").html() DpskTek = 1;for(q=0;q<DopuskList.length;q++){if(DopuskList[q]== NIk){DpskTek = 0;break;}} $(this).find(".hide_Nic-SIG").each(function (){ var S=$(this).html(); /*[AVA]*/ if($(this).hasClass('AVA')==true){var AVA=$(this).parents(".post").find(".post-author .pa-avatar") if(AVA.html()!=null){AVA.html(Avt_St+S+Avt_End)}else $(this).parents(".post").find(".post-author .pa-title").after(pa_avtr+Avt_St+S+Avt_End+'</li>');} if(DpskTek == 1){ /*[NIC]*/ if($(this).hasClass('NIC')==true){$(this).parents(".post").find(".post-author .pa-author a").html(S);} /*[STA]*/ if($(this).hasClass('STA')==true){$(this).parents(".post").find(".post-author .pa-title").html(S);} /*[SGN]*/ if($(this).hasClass('SGN')==true){$(this).parents(".post").find(".post-content .post-sig").replaceWith(""); $(this).parents(".post").find(".post-content").append(PostSig_St+S+PostSig_End);} } });}); //======= end Обслуживание BB-Тегов ===============================// //alert("B") //alert(Dopusk);alert(DopuskList); //========================================================================// //Тут ставим в форму ответа Блок-меню и кнопку, в зависимости от Dopuska var L1="<div id=My clacc=My><img title=\"Смена имиджа\" id=imgNIK-SIG width=20 src=\"http://s0.uploads.ru/8HmbC.png\" onclick=\"$('#stTs').toggle()\" alt=\"Аватар\" style=\"vertical-align:middle\"/><div id=\"stTs\" class=\"container\"><img id=\"sdfs\" src=\"http://s9.uploads.ru/iV2Qo.png\" style=\"position:absolute;margin:-9px;\"/><img alt=\"NIC\" class=\"iblank NIC\" src=\"/i/blank.gif\" title=\"Cменить ник\"/><img alt=\"STA\" class=\"iblank STA\" src=\"/i/blank.gif\" title=\"Cменить статус\"/><img alt=\"AVA\" class=\"iblank AVA\" src=\"/i/blank.gif\" title=\"Cменить авaтар\"/><img class=\"iblank Galleri\" src=\"/i/blank.gif\" onmouseover=\"THISsrc=this.src;this.src=\"/i/blank.gif\" onmouseout=\"this.src=THISsrc;\" title=\"Выбрать из галереи\" onclick=\"$('#avtrChang-area').toggle('545')\"/><img alt=\"SGN\" class=\"iblank SGN\" src=\"/i/blank.gif\" title=\"Cменить подпись\"/><img alt=\"mem\" class=\"iblank mem\" src=\"/i/blank.gif\" title=\"Вставить запомненное из 'предыдущей сессии'\"/></div></div>"; var L2="<div id=My clacc=My><img title=\"Смена имиджа\" id=imgNIK-SIG width=20 src=\"http://s9.uploads.ru/iV2Qo.png\" onclick=\"$('#stTs').toggle()\" alt=\"Аватар\" style=\"vertical-align:middle\"/><div id=\"stTs\" class=\"container\"><img id=\"sdfs\" src=\"http://s9.uploads.ru/iV2Qo.png\" style=\"position:absolute;margin:-9px;\"/><img alt=\"NIC\" class=\"iblank NIC\" src=\"/i/blank.gif\" title=\"Cменить ник\"/><img alt=\"STA\" class=\"iblank STA\" src=\"/i/blank.gif\" title=\"Cменить статус\"/><img alt=\"AVA\" class=\"iblank AVA\" src=\"/i/blank.gif\" title=\"Cменить авaтар\"/><img class=\"iblank Galleri\" src=\"/i/blank.gif\" onmouseover=\"THISsrc=this.src;this.src=\"/i/blank.gif\" onmouseout=\"this.src=THISsrc;\" title=\"Выбрать из галереи\" onclick=\"$('#avtrChang-area').toggle('545')\"/><img alt=\"SGN\" class=\"iblank SGN\" src=\"/i/blank.gif\" title=\"Cменить подпись\"/><img alt=\"mem\" class=\"iblank mem\" src=\"/i/blank.gif\" title=\"Вставить запомненное из 'предыдущей сессии'\"/></div></div>"; if(!Dopusk){L2=L1};$("#keyboard-area").after(L2) //========== Галерея ===========================================// var cntrAvt="<div class=\"container\" id=\"avtrChang-area\" onclick=\"$('#avtrChang-area').toggle()\" style=\"display: none\"><div id=\"avtrChang-block\"></div></div>"; var preAvtrST="<img src=\""; var preAvtrEnd="\" height=\"55\" alt=\"Avatar\" onclick=\"var bDSb='[AVA]'+this.src+'[/AVA]';setCookie3('AVA',bDSb,30*24*60*60*1000);smile(''+bDSb+'');\"/> "; $("#smilies-area").before(cntrAvt) for(i=0; i<AvtrArr.length; i++){$("#avtrChang-area").append(preAvtrST+AvtrArr[i]+preAvtrEnd);} //======= Обслуживание запомненных Cookie таблицы Ввода в форме ответа ===============================// var TagsSUM ={NIC:0,STA:0,AVA:0,SGN:0} function ReadAndSetBBcocie() { var BB_Lst = new Array("NIC","STA","AVA","SGN") for(i=0; i<BB_Lst.length; i++){ var s=getCookie3(BB_Lst[i]); if(s){smile('\n'+s);} } } //======= Обслуживание Текущих Cookie таблицы Ввода в форме ответа ===============================// function TagsAlert (BB) { var LBBstr="однострочный"; alert("ОШИБКА ПРИМЕНЕНИЯ ТЕГА:\nTeг ["+BB+"] - не пустой(пустые теги не запоминаются), "+LBBstr+" и однократно-применимый в одном сообщении!\n\n - Для для правильного отображения тегов, используемых в блоке \"КОД\", применяйте скрипт \"Обезвреживания\":\n\n Cсылка на Скрипт:\nhttp://forum.mybb.ru/viewtopic.php?id=21313&p=6#p663171\n\n") } function CmpareInOut(In,Out,BB) { var result='',reSt="["+BB+"]" for(i=0; i<Out.length; i++){if(In.substring(0,i)!=Out.substring(0,i)) { Out=Out.replace(In.substring(0,i-1),''); Out=Out.replace(/^[\s\S]{0,5}\]/igm,'');//alert("Out1="+Out) var re="[/"+BB+"]",Send=Out.indexOf(re); if(Send!=-1)result=Out.substring(0,Send); //alert("result="+result) if(BB!="SGN" && result.replace(/^.*?([\n\r]|$)/,'')!=""){$("#main-reply").val(In);TagsAlert (BB); result='';return false;} // Проверка на многострочность не у подписи! if(result){ //Найдено наполнение тега; result=reSt+result+re; //alert("result="+result) setCookie3(BB,result,30*24*60*60*1000); return result;} else return false; } } return false; // Конец цикла и не нашли } //======= Обслуживание Таблицы Ввода в форме ответа ===============================// $(document).ready( function(){ $('#stTs .iblank[alt]').click(function(){ BB=$(this).attr("alt"); if(BB=='mem'){ReadAndSetBBcocie(); }else { //alert(BB); In=$("#main-reply").val() bbcode('['+BB+']','[/'+BB+']') Out=$("#main-reply").val() var E=CmpareInOut(In,Out,BB); //alert(E); } return false; }); }); //======= end Обслуживание Таблицы Ввода в форме ответа ===============================// } // ### end function StartNIZ(){ ###############//
ищешь
var L1="<div id=My clacc=My><img title=\"Смена имиджа\" id=imgNIK-SIG width=20 src=\"http://s0.uploads.ru/8HmbC.png\"
заменяешь это http://s0.uploads.ru/8HmbC.png на свою иконку
ищешь
alt=\"Аватар\" style=\"vertical-align:middle\"/><div id=\"stTs\" class=\"container\"><img id=\"sdfs\" src=\"http://s9.uploads.ru/iV2Qo.png\"
заменяешь это http://s9.uploads.ru/iV2Qo.png на шаблон смены имиджа
(оно два раза встречается, два раза и заменяешь)
сохраняешь блокнот в формате .js
идёшь грузить на форум: админка - файлы
копируешь ссылку на файл и заменяешь эту ссылку http://forumstatic.ru/files/000f/05/e1/37375.js в коде своей
Поделиться102017-09-28 21:14:38
ищешь в хтмл-низ код
<!-- Скрипт смены имиджа - часть II -->
<style>.punbb .pa-avatar img {max-width:190px;height:auto;}</style>
<script type="text/javascript">
OnSmenaImage("модераторская.", new Array(""))
var AvtrArr=new Array(
"http://s0.uploads.ru/8HmbC.png"
//End myarray_!!Последняя ссылка без запятой!!!
)
StartNIZ(); //
</script>
<!-- Конец скрипта -->
заменяешь эту иконку http://s0.uploads.ru/8HmbC.png на ту, что писала выше:
ищешь
var L1="<div id=My clacc=My><img title=\"Смена имиджа\" id=imgNIK-SIG width=20 src=\"http://s0.uploads.ru/8HmbC.png\"
заменяешь это http://s0.uploads.ru/8HmbC.png на свою иконку