AntiSlaed CMS
Вход
Логин: Пароль:Забыли пароль?
Запомнить вас на этом компьютере?
Войти скрытым?

Здравствуйте, Гость ( Вход | Регистрация )

> Внимание!

Адрес нашего форума изменился, теперь мы доступны по адресу antislaed.net. Обновите ссылки и закладки, он больше не изменится.


 
Ответить в данную темуНачать новую тему
> Помогите сделать блок
milancs
сообщение Nov 21 2011, 23:50
Сообщение #1


Приблуда
Иконка группы

Группа: Пользователи

Сообщений: 14
Регистрация:
15.10.2009
Пользователь №: 9,314
Спасибо сказали: 0

Вставить ник




Нужен блок, в котором постоянно меняются картинки, без перезагрузки страницы.
Перейти в начало страницы
 
     Выделите текст перед нажатием цитаты
+Цитировать сообщение
BETxoWIN
сообщение Dec 4 2011, 13:05
Сообщение #2


Приблуда
Иконка группы

Группа: Пользователи

Сообщений: 18
Регистрация:
7.11.2010
Пользователь №: 10,760
Спасибо сказали: 0

Вставить ник




тоже бы не отказался
Перейти в начало страницы
 
     Выделите текст перед нажатием цитаты
+Цитировать сообщение
rocksmart
сообщение Dec 4 2011, 15:19
Сообщение #3


Продвинутый юзверь
Иконка группы

Группа: Пользователи

Сообщений: 99
Регистрация:
30.1.2008
Из: Пермь
Пользователь №: 2,154
Спасибо сказали: 26

Вставить ник




а какртинки откуда будут браться? И версия движка какая?

ВОт выдернул со слаеда http://pro-script.ru/index.php?name=news&a...view&id=290

Сообщение отредактировал rocksmart: Dec 4 2011, 16:01
Перейти в начало страницы
 
     Выделите текст перед нажатием цитаты
+Цитировать сообщение
DjSalamander
сообщение Dec 5 2011, 09:08
Сообщение #4


прорвемся...
Иконка группы

Группа: [..AS..]

Сообщений: 2,388
Регистрация:
6.9.2008
Из: Latvia Riga-Vangaži
Пользователь №: 5,367
Спасибо сказали: 457

Вставить ник




Ловите, картинки на свои поменяетье

КОД
<center>
<style type="text/css">

#domticker{
width: 170px;
height: 70px;
border: 1px dashed black;
padding: 5px;
background-color: #330033;
}

#domticker div{ /*IE6 bug fix when text is bold and fade effect (alpha filter) is enabled. Style inner DIV with same color as outer DIV*/
background-color: #330033;
}

#domticker a{
font-weight: bold;
}

.someclass{ //class to apply to your scroller(s) if desired
}

</style>

<script type="text/javascript">



var tickercontent=new Array()

tickercontent[0]='<a href="http://www.1tv.ru/"><img src="uploads/all/all-UY5bfWTSwC.gif" alt="Первый канал является единоличным лидером в эфире" border="0"></a>'
tickercontent[1]='<a href="http://www.privet.lv/forum"><img src="images/privet.gif" border="0" width="88" height="31" alt="baner"></a>'
tickercontent[2]='<a href="http://www.novonews.lv"><img src="uploads/news/novo.gif" border="0" width="88" height="31" alt="baner"></a>'
tickercontent[3]='<a href="http://korobasow.ru/"><img src="uploads/news/news-p5UyHER5Ke.jpg" width="88" height="31"></a>'
tickercontent[4]='<a href="http://vesti.ru/"><img src="uploads/news/news-rGavluRWoJ.jpg"></a>'
tickercontent[5]='<a href="http://tvnet.lv"><img src="uploads/news/news-Yx7zFIwnVa.jpg"></a>'
tickercontent[6]='<a href="http://techvesti.ru"><img src="uploads/news/news-YOR1Nnaj8Z-0.gif"></a>'
tickercontent[7]='<p style="text-align:center;"><a title="Citāda Pasaule - Pasaule mainās ātrāk nekā mēs domājam..." href="http://citadapasaule.com/" target="_blank"><img src="http://citadapasaule.files.wordpress.com/2011/04/citadapasaule-com.jpg" /></a></p>'
tickercontent[8]='<a href="http://www.liepajniekiem.lv"><img src="uploads/news/news-y4CVIcW20l-0.gif"></a>'
tickercontent[9]='<a href="http://pravda.ru"><img src="uploads/news/news-fwrRXldMd5-0.gif"></a>'
tickercontent[10]='<a href="http://www.ltvzinas.lv/"><img src="uploads/all/all-CjMKt5320C.gif"></a>'
tickercontent[11]='<a href="http://www.hot-info.ru/"><img src="uploads/all/all-FdWmwTnUJj.gif"></a>'
</script>

<script type="text/javascript">

function domticker(content, divId, divClass, delay, fadeornot){
this.content=content
this.tickerid=divId //ID of master ticker div. Message is contained inside first child of ticker div
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over ticker (and pause it if it is)
this.pointer=1
this.opacitystring=(typeof fadeornot!="undefined")? "width: 100%; filter:progid:DXImageTransform.Microsoft.alpha(opacity=100); -moz-opacity: 1" : ""
if (this.opacitystring!="") this.delay+=500 //add 1/2 sec to account for fade effect, if enabled
this.opacitysetting=0.2 //Opacity value when reset. Internal use.
document.write('<div id="'+divId+'" class="'+divClass+'"><div style="'+this.opacitystring+'">'+content[0]+'</div></div>')
var instanceOfTicker=this
setTimeout(function(){instanceOfTicker.initialize()}, delay)
}

domticker.prototype.initialize=function(){
var instanceOfTicker=this
this.contentdiv=document.getElementById(this.tickerid).firstChild //div of inner content that holds the messages
document.getElementById(this.tickerid).onmouseover=function(){instanceOfTicker.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){instanceOfTicker.mouseoverBol=0}
this.rotatemsg()
}

domticker.prototype.rotatemsg=function(){
var instanceOfTicker=this
if (this.mouseoverBol==1) //if mouse is currently over ticker, do nothing (pause it)
setTimeout(function(){instanceOfTicker.rotatemsg()}, 100)
else{
this.fadetransition("reset") //FADE EFFECT- RESET OPACITY
this.contentdiv.innerHTML=this.content[this.pointer]
this.fadetimer1=setInterval(function(){instanceOfTicker.fadetransition('up', 'fadetimer1')}, 100) //FADE EFFECT- PLAY IT
this.pointer=(this.pointer<this.content.length-1)? this.pointer+1 : 0
setTimeout(function(){instanceOfTicker.rotatemsg()}, this.delay) //update container
}
}

// -------------------------------------------------------------------
// fadetransition()- cross browser fade method for IE5.5+ and Mozilla/Firefox
// -------------------------------------------------------------------

domticker.prototype.fadetransition=function(fadetype, timerid){
var contentdiv=this.contentdiv
if (fadetype=="reset")
this.opacitysetting=0.2
if (contentdiv.filters && contentdiv.filters[0]){
if (typeof contentdiv.filters[0].opacity=="number") //IE6+
contentdiv.filters[0].opacity=this.opacitysetting*100
else //IE 5.5
contentdiv.style.filter="alpha(opacity="+this.opacitysetting*100+")"
}
else if (typeof contentdiv.style.MozOpacity!="undefined" && this.opacitystring!=""){
contentdiv.style.MozOpacity=this.opacitysetting
}
else
this.opacitysetting=1
if (fadetype=="up")
this.opacitysetting+=0.2
if (fadetype=="up" && this.opacitysetting>=1)
clearInterval(this[timerid])
}

</script><script type="text/javascript">

//new domticker(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds, optionalfadeswitch)

new domticker(tickercontent, "domticker", "someclass", 3000, "fadeit")
</script>
</center>
Перейти в начало страницы
 
     Выделите текст перед нажатием цитаты
+Цитировать сообщение

Ответить в данную темуНачать новую тему

2 чел. читают эту тему (гостей: 2, скрытых пользователей: 0)
Пользователей: 0
 

RSS Текстовая версия Сейчас: 17 May 2024 - 06:13
Хостинг предоставлен NetLevel.Ru   Eleanor CMS