Благодарим за выбор нашего сервиса!
Тестовое сообщение
Сообщений 1 страница 13 из 13
Поделиться32014-05-01 20:57:01
нужно отрегулировать: баннеры внизу форума + оповещение о лс + код скрытия изображений + счетчик символов
Поделиться42014-05-01 21:12:48
баннеры
<div style="width:200px; position: absolute; margin-top: 0px; margin-left:197px; color: #201c17;"> <div style="overflow: scroll; overflow-x: hidden; height: 66px; width: 660px;margin-top: -118px; margin-left:-112px;"> <a href="http://colorforum.ru" title="Колорфорум любит тебя!" target=_blank> <img src="https://forumstatic.ru/files/000c/77/06/37431.gif" border="0" alt="COLOR FORUM"></a> <a href="http://friendzone.rusff.me" title="FRIENDZONE" target=_blank> <img src="http://savepic.net/4793817m.gif" border="0" alt="FRIENDZONE"></a> <a target="_blank" href="http://www.misteria7.com/" title="Мистерия ждет Вас!"><img src="http://i57.servimg.com/u/f57/17/26/24/34/banner11.gif" border="0"></a> <a href="http://lylife.ru/" target="_blank"><img src="https://forumstatic.ru/files/000b/09/4f/76237.gif" title="Каталог форумов" alt="LYL"></a> <a target="_blank" href="http://crossoversempiternal.rusff.me/"><img src="http://savepic.su/4116497.gif" ></a> <a href="http://aphoenix.anihub.ru"><img src="http://s5.uploads.ru/bKPh5.gif" border="0" /></a> <a href="http://96kingdom.ru/" alt="96kingdom" title="96kingdom" target=_blank> <img src="https://forumstatic.ru/files/0012/66/88/90608.png" border="0" ></a> <a href="http://imagiart.ru/" title="photoshop: Renaissance" target=_blank> <img src="http://s1.uploads.ru/1bxEs.gif" border="0" alt="photoshop: Renaissance"></a> </div></div>
Поделиться62014-05-01 21:15:32
счетчик сообщений
<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>
Поделиться72014-05-01 21:30:29
кнопка пиара текстом
<script type="text/javascript"> PiarNik="PR"; PiarPas="ilikethis"; 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 style=\"cursor:pointer;\"><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>
Поделиться82014-05-01 22:21:44
поизвращаться над админами в таблице:
Код:<a href="ССЫЛКА НА ПРОФИЛЬ" class="tip_trigger"><img src="ССЫЛКА НА ИЗОБРАЖЕНИЕ" border="0" style="width: 55px;"> <span class="tip" style="display: none; top: 334px; left: 777px; "><img src="ССЫЛКА НА ИЗОБРАЖЕНИЕ В ВСПЛЫВАЮЩЕМ ОКНЕ"><br> <font size="1"><center>ИНФОРМАЦИЯ В ВСПЛЫВАЮЩЕМ ОКНЕ</center></font></span></a>хтмл-вверх
Код:<script type="text/javascript"> $(document).ready(function() { //Tooltips $(".tip_trigger").hover(function(){ $(this).find('.tip').show(); //Show tooltip }, function() { $(this).find('.tip').hide(); //Hide tooltip }).mousemove(function(e) { var mousex = e.pageX + 20; //Get X coodrinates var mousey = e.pageY + 20; //Get Y coordinates var tipWidth = $(this).find('.tip').width(); //Find width of tooltip var tipHeight = $(this).find('.tip').height(); //Find height of tooltip //Distance of element from the right edge of viewport var tipVisX = $(window).width() - (mousex + tipWidth); var tipVisY = $(window).height() - (mousey + tipHeight); if ( tipVisX < 20 ) { //If tooltip exceeds the X coordinate of viewport mousex = e.pageX - tipWidth - 20; $(this).find('.tip').css({ top: mousey, left: mousex }); } if ( tipVisY < 20 ) { //If tooltip exceeds the Y coordinate of viewport mousey = e.pageY - tipHeight - 20; $(this).find('.tip').css({ top: mousey, left: mousex }); } else { $(this).find('.tip').css({ top: mousey, left: mousex }); } }); }); </script>окно стиля
Код:.tip { padding: 10px; /* расстояние текста от края окна */ color: #3e1d02; /* цвет шрифта */ background-color: #ccbba7; /* фоновый цвет окна */ display: none; position: absolute; z-index: 1000; width: 150px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
Поделиться92014-05-01 22:41:57
выделить код
<!--"Выделить код" в форме кода--><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>'; } }
Поделиться102014-05-01 23:08:45
цитатами описание форума - настроить
<div style="width: 280px; font-family: arial; font-size: 12px; line-height: 100%; text-align: justify; background-color: #eee9af; padding: 10px; border: 3px double #bbb;"> <div style="width: 280px; text-align: center; font-family: 'Oswald', sans-serif; font-size: 14px; line-height: 100%; letter-spacing: -1px; color: #000; text-transform: uppercase; padding-bottom: 5px;"> гостевая </div><center> <center>пригласил тебя вступить в наши ряды, удалил дверь, пока не вступишь - не выйдешь.</center> </div></div></div>
Поделиться112014-05-01 23:18:38
убрать отредактированно:
<style type="text/css"> .lastedit {display:none} </style>
Поделиться122014-05-07 18:59:40
[img]http://funkyimg.com/i/HeM3.gif[/img] [img]http://funkyimg.com/i/HeM4.gif[/img] [img]http://funkyimg.com/i/HeM8.gif[/img] [img]http://funkyimg.com/i/HeM7.gif[/img] [img]http://funkyimg.com/i/HeM6.gif[/img] [img]http://funkyimg.com/i/HeM5.gif[/img] [img]http://funkyimg.com/i/HeMe.png[/img] [img]http://funkyimg.com/i/HeMc.png[/img] [img]http://funkyimg.com/i/HeMb.png[/img] [img]http://funkyimg.com/i/HeMf.png[/img] [img]http://funkyimg.com/i/HeMd.png[/img] [img]http://funkyimg.com/i/HeMi.png[/img]
Поделиться132014-05-07 19:05:51
в таблицу