Единый форум поддержки

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Единый форум поддержки » Корзина » Общие вопросы по оформлению (40)


Общие вопросы по оформлению (40)

Сообщений 601 страница 620 из 1000

601

Ахиллес
Полностью прозрачный  - эт нужно менять стиль

Полупрозрачность можно поставить скриптом
в HTML низ

<script>
$("#pun").css({"opacity":0.76});
</script>

И добавьте строку в HTML верх

<style>
body{
background-color:#171717;
background-image: url(http://www.dwshare.com/moviepictures/0332452/photo-1003.jpg);
background-position:top center;
background-repeat: no-repeat;
background-attachment:fixed;
}
</style>

Отредактировано Deff (Сб, 28 Янв 2012 15:22:58)

0

602

Дан код спойлера:

Код:
<script type="text/javascript">
function tag_spoiler(){
    var y = prompt("Введите текст на кнопке",'');
    if(y!='null' && y!='' && typeof(y)!='object' && typeof(y)!='undefined'){
    var x = prompt("Введите текст на закрывающей  кнопке",'');
    if(x=='null' || x=='' || typeof(x)=='object' || typeof(x)=='undefined') bbcode('[*spoiler'+y+']','[/spoiler]'); else bbcode('[*spoiler='+y+'|'+x+']','[/spoiler]');}
    else bbcode('[*spoiler]','[/spoiler]')
}
function addSpoiler(str,from,internal){
    var pos=0,pos2=0,pos_c=0,pos_l=0,newpos=0,string='',close='',open='';
    if((pos=str.indexOf("[*spoiler",from))==-1) return str;
    if((pos2=str.indexOf("[/spoiler]"),pos+9)==-1) return str;
    if(((pos_c=str.indexOf("]",pos+8))!=-1) && ((pos_c!=pos+8)&&(pos_c!=pos+9))){
    string = str.substring(pos+9,pos_c);
    if((pos_l = string.indexOf("|"))!=-1){
close = string.substring(0,pos_l);
open = string.substring(pos_l+1,string.length);
    }
    else{
close = string;
open = string;
    }
    }
    else{
close = 'Открыть спойлер';
open = 'Скрыть';
    }
    newpos=str.indexOf("[*spoiler",pos+9)
    if(newpos<pos2 && newpos!=-1) str=addSpoiler(str,pos+9,true)
    if((pos2=str.indexOf("[/spoiler]",pos+9))==-1) return str;
    str=str.substring(0,pos)+makeSpoiler(str.substring(pos_c+1,pos2),open,close)+str.substring(pos2+10,str.length)
    if( str.indexOf("[*spoiler")!=-1 && internal==false) str=addSpoiler(str,0,false)
    return str;
}

function makeSpoiler(txt,open,close){
    txt='<div class="quote-box" style="padding:1px;background: none; border: 0;"><cite style="width:100%;margin:0;"><input id="'+open+'" class="spoiler-button" style="width:200px;font-size:11px; margin:0;" type="button" value="'+close+'"></cite><blockquote class="quote-box" style="display:none; width: 90%;border: 1px solid black;margin:0;">'+txt+'</blockquote></div>'
    return txt;
}

$(document).ready(function(){
    $("div.quote-box > cite > input.spoiler-button").click(function(){
$(this).parents("div.quote-box:first").find("blockquote.quote-box:first").toggle("slow");
var a = $(this).attr('value');$(this).attr('value',$(this).attr('id'));$(this).attr('id',a);
    });
});

if((document.URL.indexOf("viewtopic.php")!=-1) || (document.URL.indexOf("post.php")!=-1)){
    elm=document.getElementById("pun-main").getElementsByTagName("div")
    for(x in elm) if(elm[x].className=="post-content"){
var post=elm[x]
post.innerHTML=addSpoiler(post.innerHTML,0,false)
    }
}
if(form=document.getElementById("form-buttons"))
     form.getElementsByTagName("tr")[0].insertCell(16).innerHTML="<img  id=\"button-spoiler\" title=\"Спойлер\" onclick=\"tag_spoiler('[*spoiler]','[/spoiler]')\" src=\"/i/blank.gif\" />"
</script>

1) Как сделать кнопку со скругленными краями
http://i041.radikal.ru/1201/84/f69d4cc31c84.jpg
2) как убрать из спойлера эффект "тени".

Этот код в css в /* CS1.7 */

Код:
.punbb .quote-box, .punbb .code-box {
    border-radius:15px;
    -webkit-border-radius:15px;
    -khtml-border-radius:15px;
    -moz-border-radius:15px;
    -o-border-radius:15px;

    box-shadow: 0px 0px 15px #000;
    -webkit-box-shadow:10px 0px 15px #000;
    -khtml-box-shadow:0px 0px 15px #000;
    -moz-box-shadow:0px 0px 15px #000;
    }

0

603

Акина
Ссылку на страницу с кодом спойлера в сообщении

0

604

Deff
http://bleachsouls.mybb.ru/viewtopic.php?id=4#p634

0

605

Акина
Так пойдёт ?

Замените код спойлера

Код:
<style>input.spoiler-button{
border:2px solid #DBDBE8!important;
    border-radius:15px;
    -webkit-border-radius:15px;
    -khtml-border-radius:15px;
    -moz-border-radius:15px;
    -o-border-radius:15px;
    box-shadow: 0px 2px 8px #AFAFB3;
    -webkit-box-shadow:0px 2px 2px #AFAFB3;
    -khtml-box-shadow:0px 2px 2px #AFAFB3;
    -moz-box-shadow:0px 2px 2px #AFAFB3;
}</style>
<script type="text/javascript">
function tag_spoiler(){
    var y = prompt("Введите текст на кнопке",'');
    if(y!='null' && y!='' && typeof(y)!='object' && typeof(y)!='undefined'){
    var x = prompt("Введите текст на закрывающей  кнопке",'');
    if(x=='null' || x=='' || typeof(x)=='object' || typeof(x)=='undefined') bbcode('[*spoiler'+y+']','[/spoiler]'); else bbcode('[*spoiler='+y+'|'+x+']','[/spoiler]');}
    else bbcode('[*spoiler]','[/spoiler]')
}
function addSpoiler(str,from,internal){
    var pos=0,pos2=0,pos_c=0,pos_l=0,newpos=0,string='',close='',open='';
    if((pos=str.indexOf("[*spoiler",from))==-1) return str;
    if((pos2=str.indexOf("[/spoiler]"),pos+9)==-1) return str;
    if(((pos_c=str.indexOf("]",pos+8))!=-1) && ((pos_c!=pos+8)&&(pos_c!=pos+9))){
    string = str.substring(pos+9,pos_c);
    if((pos_l = string.indexOf("|"))!=-1){
close = string.substring(0,pos_l);
open = string.substring(pos_l+1,string.length);
    }
    else{
close = string;
open = string;
    }
    }
    else{
close = 'Открыть спойлер';
open = 'Скрыть';
    }
    newpos=str.indexOf("[*spoiler",pos+9)
    if(newpos<pos2 && newpos!=-1) str=addSpoiler(str,pos+9,true)
    if((pos2=str.indexOf("[/spoiler]",pos+9))==-1) return str;
    str=str.substring(0,pos)+makeSpoiler(str.substring(pos_c+1,pos2),open,close)+str.substring(pos2+10,str.length)
    if( str.indexOf("[*spoiler")!=-1 && internal==false) str=addSpoiler(str,0,false)
    return str;
}

function makeSpoiler(txt,open,close){
    txt='<div class="quote-box" style="padding:1px;background: none; border: 0;"><cite style="width:100%;margin:0;"><input id="'+open+'" class="spoiler-button" style="width:200px;font-size:11px; margin:0;" type="button" value="'+close+'"></cite><blockquote style="display:none;padding:0.4em 1em 1em 1em;border:none 0 transparent!important; width: 90%;border: 1px solid black;margin:0;">'+txt+'</blockquote></div>'
    return txt;
}

$(document).ready(function(){
    $("div.quote-box > cite > input.spoiler-button").click(function(){
$(this).parents("div.quote-box:first").find("blockquote:first").toggle("slow");
var a = $(this).attr('value');$(this).attr('value',$(this).attr('id'));$(this).attr('id',a);
    });
});

if((document.URL.indexOf("viewtopic.php")!=-1) || (document.URL.indexOf("post.php")!=-1)){
    elm=document.getElementById("pun-main").getElementsByTagName("div")
    for(x in elm) if(elm[x].className=="post-content"){
var post=elm[x]
post.innerHTML=addSpoiler(post.innerHTML,0,false)
    }
}
if(form=document.getElementById("form-buttons"))
     form.getElementsByTagName("tr")[0].insertCell(16).innerHTML="<img  id=\"button-spoiler\" title=\"Спойлер\" onclick=\"tag_spoiler('[*spoiler]','[/spoiler]')\" src=\"/i/blank.gif\" />"
</script>

0

606

Deff
А тень так и не убралась(

0

607

Да, и еще вопрос. как подвинуть навигацию и форум?
http://s018.radikal.ru/i521/1201/f2/2a2694d844bft.jpg

0

608

Акина написал(а):

Да, и еще вопрос. как подвинуть навигацию и форум?

Ссылка - есть "?

0

609

Акина написал(а):

А тень так и не убралась(

Код:
<style>input.spoiler-button{
border:2px solid #DBDBE8!important;
    border-radius:15px;
    -webkit-border-radius:15px;
    -khtml-border-radius:15px;
    -moz-border-radius:15px;
    -o-border-radius:15px;
    box-shadow: 0px 2px 8px #AFAFB3;
    -webkit-box-shadow:0px 2px 2px #AFAFB3;
    -khtml-box-shadow:0px 2px 2px #AFAFB3;
    -moz-box-shadow:0px 2px 2px #AFAFB3;
}
.punbb .quote-box.spoiler-box{
    box-shadow:none;
    -webkit-box-shadow:none;
    -khtml-box-shadow:none;
    -moz-box-shadow:none;

    box-shadow: 0px 2px 8px #AFAFB3;
    -webkit-box-shadow:0px 2px 2px #AFAFB3;
    -khtml-box-shadow:0px 2px 2px #AFAFB3;
    -moz-box-shadow:0px 2px 2px #AFAFB3;
}
</style>
<script type="text/javascript">
function tag_spoiler(){
    var y = prompt("Введите текст на кнопке",'');
    if(y!='null' && y!='' && typeof(y)!='object' && typeof(y)!='undefined'){
    var x = prompt("Введите текст на закрывающей  кнопке",'');
    if(x=='null' || x=='' || typeof(x)=='object' || typeof(x)=='undefined') bbcode('[*spoiler'+y+']','[/spoiler]'); else bbcode('[*spoiler='+y+'|'+x+']','[/spoiler]');}
    else bbcode('[*spoiler]','[/spoiler]')
}
function addSpoiler(str,from,internal){
    var pos=0,pos2=0,pos_c=0,pos_l=0,newpos=0,string='',close='',open='';
    if((pos=str.indexOf("[*spoiler",from))==-1) return str;
    if((pos2=str.indexOf("[/spoiler]"),pos+9)==-1) return str;
    if(((pos_c=str.indexOf("]",pos+8))!=-1) && ((pos_c!=pos+8)&&(pos_c!=pos+9))){
    string = str.substring(pos+9,pos_c);
    if((pos_l = string.indexOf("|"))!=-1){
close = string.substring(0,pos_l);
open = string.substring(pos_l+1,string.length);
    }
    else{
close = string;
open = string;
    }
    }
    else{
close = 'Открыть спойлер';
open = 'Скрыть';
    }
    newpos=str.indexOf("[*spoiler",pos+9)
    if(newpos<pos2 && newpos!=-1) str=addSpoiler(str,pos+9,true)
    if((pos2=str.indexOf("[/spoiler]",pos+9))==-1) return str;
    str=str.substring(0,pos)+makeSpoiler(str.substring(pos_c+1,pos2),open,close)+str.substring(pos2+10,str.length)
    if( str.indexOf("[*spoiler")!=-1 && internal==false) str=addSpoiler(str,0,false)
    return str;
}

function makeSpoiler(txt,open,close){
    txt='<div class="quote-box spoiler-box" style="padding:1px;background: none; border: 0;"><cite style="width:100%;margin:0;"><input id="'+open+'" class="spoiler-button" style="width:200px;font-size:11px; margin:0;" type="button" value="'+close+'"></cite><blockquote style="display:none;padding:0.4em 1em 1em 1em;border:none 0 transparent!important; width: 90%;border: 1px solid black;margin:0;">'+txt+'</blockquote></div>'
    return txt;
}

$(document).ready(function(){
    $("div.quote-box > cite > input.spoiler-button").click(function(){
$(this).parents("div.quote-box:first").find("blockquote:first").toggle("slow");
var a = $(this).attr('value');$(this).attr('value',$(this).attr('id'));$(this).attr('id',a);
    });
});

if((document.URL.indexOf("viewtopic.php")!=-1) || (document.URL.indexOf("post.php")!=-1)){
    elm=document.getElementById("pun-main").getElementsByTagName("div")
    for(x in elm) if(elm[x].className=="post-content"){
var post=elm[x]
post.innerHTML=addSpoiler(post.innerHTML,0,false)
    }
}
if(form=document.getElementById("form-buttons"))
     form.getElementsByTagName("tr")[0].insertCell(16).innerHTML="<img  id=\"button-spoiler\" title=\"Спойлер\" onclick=\"tag_spoiler('[*spoiler]','[/spoiler]')\" src=\"/i/blank.gif\" />"
</script>

0

610

Deff написал(а):

Ссылка - есть "?

Гомен. Забыла
Тестовик

Deff написал(а):

Код:

Deff написал(а):

Код:

Спасибо

0

611

Акина Замените HTML верх

Код:
<style type="text/css">
#pun-navlinks {
  height:20px;
  width:856px;
  z-index:900 !important;
  position:fixed !important;
  top:0 !important;
  background-color: #e0c8a7;
  text-align:center;
  margin:0 0 0 -20px!important;
}
#pun-title{
   margin-top:-290px!important;
}
</style>

Рекламу двигаем таким кодом

Типовые Вопросы п.п 8

0

612

Deff
Спасибо большое

0

613

Хай, проблемы с кнопками, утром работали сейчас нет (в таблице)
http://khrainbow.mybb.ru/

Отредактировано Ta_chan (Сб, 28 Янв 2012 21:33:23)

0

614

Deff, большое спасибо

0

615

Как сделать, чтоб шрифт на кнопках оставался не прозрачным?Сайт

0

616

http://tproject.anihub.ru/ у меня форум почему-то съехал вправо, можно как-то поправить?

0

617

скажите а какой скрипт для выделения кода?

0

618

.riddle_01
у меня ваш форум на месте все по центру, может глюк браузера?

0

619

..Boleyn написал(а):

скажите а какой скрипт для выделения кода?

http://forum.mybb.ru/viewtopic.php?pid=567143#p567143

0

620

Deff
благодарю. А куда вставлять? в хтмл-низ?

0


Вы здесь » Единый форум поддержки » Корзина » Общие вопросы по оформлению (40)