DIZ-CS.RU - Мы с Вами НАВСЕГДА!
Активный форум » WEB-мастеру » Вопросы и ответы на FAQ по uCoz » Информеры в шапке
  • Страница 1 из 1
  • 1
Сообщение # 1
Аватарка Diz-Games™
OFF
Пользователь
Сообщения:20
Награды:0
Отзывы:0
Сайт пользователя:
Нужны информеры в шапке + установка!
Сообщение # 2
Аватарка Nicr
OFF
Пользователь
Сообщения:198
Награды:30
Отзывы:0
Skype пользователя:
Diz-Games™,

--------------------------------------------------------------------------------------
Информеры:
----------------------------------- - --------------------------------------------------

1)
Название информера: Информер "Форум"
Раздел: Форум
Способ сортировки: Последние обновленные темы
Количество материалов: 6
Количество колонок: 1
Максимальная длина заголовка: 47
Шаблон информера:

Code







$THREAD_TITLE$

($REPLIES$)

-------------------------------------------------------------------------------------------

2)
Название информера: Информер "Файлы"
Раздел: Каталог файлов
Тип данных: Материалы
Способ сортировки: Дата добавления материала D
Количество материалов: 6
Количество колонок: 1
Максимальная длина заголовка: 47
Шаблон информера:

Code







$TITLE$

($DATE$)

-------------------------------------------------------------------------------------------

3)
Название информера: Информер "Пользователи"
Раздел: Пользовател
Способ сортировки: Дата регистрации D
Количество материалов: 6
Количество колонок: 1
Максимальная длина заголовка: 47
Шаблон информера:

Code







$USERNAME$

($REG_DATE$)

-------------------------------------------------------------------------------------------

4)
Название информера: Информер "Игры"
Раздел: Онлайн игры
Способ сортировки: Дата добавления материала D
Количество материалов: 6
Количество колонок: 1
Шаблон информера:

Code







$TITLE$

($DATE$)

-------------------------------------------------------------------------------------------

--------------------------------- -----------------------------------------------------
Установка:
------------------------------------------------------------------------- -------------

1)
Это настроенная верхняя часть сайта (замени свой код на этот)


--------------------------------------------------------------------------------------

2)
css инфомера (переделай,сохрани и загрузи в файловый менеджер)

* --------------------------------- *

* --------------------------------- *

Code
/* Tabcontent.css by Dim4ik*/

.shadetabs{padding: 3px 0;margin-left: 3;margin-top: 1px;margin-bottom: 0;font: bold 10px Verdana;list-style-type: none;text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{display: inline;margin: 0;solid navy}

.shadetabs li a{margin-top: 1px;text-decoration: none;position: relative;z-index: 1; top: 0px;padding: 5px 5px;margin-top: 10px;border: 1px solid #252525;color: #a1a1a1;background: white url(http://games-kod.do.am/img/inffon.jpg);solid navy}

.shadetabs li a:visited{color: #a1a1a1;}

.shadetabs li a:hover{text-decoration: none;color: #debc1d;}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;top: 0px;padding: 5px 5px;color: #debc1d;}

.shadetabs li a.selected{ /*selected main tab style */
background-image: url(http://games-kod.do.am/img/inffon.jpg);
border-bottom-color: url(http://games-kod.do.am/img/inffon.jpg);
}

.shadetabs li a.selected:hover{ /*selected main tab style */
text-decoration: none;}

.tabcontent{display:none;}

@media print {
.tabcontent {
display:block !important;
}
}

--------------------------------------------------------------------------------------

3)
на все страницы сайта (ставь этот код между head)

Code

--------------------------------------------------------------------------------------
Pading.js - Сохрани под таким же названием и загружи в ФМ
--------------------------------------------------------------------------------------

Code
//** Tab Content script v2.0- яПН Dynamic Drive DHTML code library (http://www.dynamicdrive.com)
//** Updated Oct 7th, 07 to version 2.0. Contains numerous improvements:
// -Added Auto Mode: Script auto rotates the tabs based on an interval, until a tab is explicitly selected
// -Ability to expand/contract arbitrary DIVs on the page as the tabbed content is expanded/ contracted
// -Ability to dynamically select a tab either based on its position within its peers, or its ID attribute (give the target tab one 1st)
// -Ability to set where the CSS classname "selected" get assigned- either to the target tab's link ("A"), or its parent container
//** Updated Feb 18th, 08 to version 2.1: Adds a "tabinstance.cycleit(dir)" method to cycle forward or backward between tabs dynamically
//** Updated April 8th, 08 to version 2.2: Adds support for expanding a tab using a URL parameter (ie: http://mysite.com/tabcontent.htm?tabinterfaceid=0 )

////NO NEED TO EDIT BELOW////////////////////////

function ddtabcontent(tabinterfaceid){
this.tabinterfaceid=tabinterfaceid //ID of Tab Menu main container
this.tabs=document.getElementById(tabinterfaceid).getElementsByTagName("a") //Get all tab links within container
this.enabletabpersistence=true
this.hottabspositions=[] //Array to store position of tabs that have a "rel" attr defined, relative to all tab links, within container
this.currentTabIndex=0 //Index of currently selected hot tab (tab with sub content) within hottabspositions[] array
this.subcontentids=[] //Array to store ids of the sub contents ("rel" attr values)
this.revcontentids=[] //Array to store ids of arbitrary contents to expand/contact as well ("rev" attr values)
this.selectedClassTarget="link" //keyword to indicate which target element to assign "selected" CSS class ("linkparent" or "link")
}

ddtabcontent.getCookie=function(Name){
var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
if (document.cookie.match(re)) //if cookie found
return document.cookie.match(re)[0].split("=")[1] //return its value
return ""
}

ddtabcontent.setCookie=function(name, value){
document.cookie = name+"="+value+";path=/" //cookie value is domain wide (path=/)
}

ddtabcontent.prototype={

expandit:function(tabid_or_position){ //PUBLIC function to select a tab either by its ID or position(int) within its peers
this.cancelautorun() //stop auto cycling of tabs (if running)
var tabref=""
try{
if (typeof tabid_or_position=="string" && document.getElementById(tabid_or_position).getAttribute("rel")) //if specified tab contains "rel" attr
tabref=document.getElementById(tabid_or_position)
else if (parseInt(tabid_or_position)!=NaN && this.tabs[tabid_or_position].getAttribute("rel")) //if specified tab contains "rel" attr
tabref=this.tabs[tabid_or_position]
}
catch(err){alert("Invalid Tab ID or position entered!")}
if (tabref!="") //if a valid tab is found based on function parameter
this.expandtab(tabref) //expand this tab
},

cycleit:function(dir, autorun){ //PUBLIC function to move foward or backwards through each hot tab (tabinstance.cycleit('foward/back') )
if (dir=="next"){
var currentTabIndex=(this.currentTabIndex0)? this.currentTabIndex-1 : this.hottabspositions.length-1
}
if (typeof autorun=="undefined") //if cycleit() is being called by user, versus autorun() function
this.cancelautorun() //stop auto cycling of tabs (if running)
this.expandtab(this.tabs[this.hottabspositions[currentTabIndex]])
},

setpersist:function(bool){ //PUBLIC function to toggle persistence feature
this.enabletabpersistence=bool
},

setselectedClassTarget:function(objstr){ //PUBLIC function to set which target element to assign "selected" CSS class ("linkparent" or "link")
this.selectedClassTarget=objstr || "link"
},

getselectedClassTarget:function(tabref){ //Returns target element to assign "selected" CSS class to
return (this.selectedClassTarget==("linkparent".toLowerCase()))? tabref.parentNode : tabref
},

urlparamselect:function(tabinterfaceid){
var result=window.location.search.match(new RegExp(tabinterfaceid+"=(\\d+)", "i")) //check for "?tabinterfaceid=2" in URL
return (result==null)? null : parseInt(RegExp.$1) //returns null or index, where index (int) is the selected tab's index
},

expandtab:function(tabref){
var subcontentid=tabref.getAttribute("rel") //Get id of subcontent to expand
//Get "rev" attr as a string of IDs in the format ",john,george,trey,etc," to easily search through
var associatedrevids=(tabref.getAttribute("rev"))? ","+tabref.getAttribute("rev").replace(/\s+/, "")+"," : ""
this.expandsubcontent(subcontentid)
this.expandrevcontent(associatedrevids)
for (var i=0; i
Сообщение # 3
Аватарка syntaxxx
OFF
Пользователь
Сообщения:28
Награды:0
Отзывы:0
[b]Nicr[/b], а ты не можешь сделать шаблон информера под Топ сайтов?
а извините что тему поднял, всё уже сам сделал.
  • Страница 1 из 1
  • 1
Поиск:
Писать на форуме могут только авторизованные пользователи.