Показать сообщение отдельно
  #3 (permalink)  
Старый 10.03.2013, 21:10
Интересующийся
Отправить личное сообщение для fe1ix Посмотреть профиль Найти все сообщения от fe1ix
 
Регистрация: 02.11.2012
Сообщений: 24

Deff,
спасибо что откликнулся.

<!DOCTYPE html>
<html lang="ru">
<head>
<script type="text/javascript" src="js/jquery-1.7.1-min.js"></script>
<script type="text/javascript" src="js/jquery.gallery.js"></script>

<script>function hideShow(el){$(el).toggleClass('show').siblings('div.hideCont_v1').slideToggle('normal');return false;};
</script>

<script>
			$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$(".group1").colorbox({rel:'group1'});
				$(".group2").colorbox({rel:'group2', transition:"fade"});
				$(".group3").colorbox({rel:'group3', transition:"none", width:"75%", height:"75%"});
				$(".group4").colorbox({rel:'group4', slideshow:true});
				$(".ajax").colorbox();
				$(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
				$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
				$(".inline").colorbox({inline:true, width:"50%"});
				$(".callbacks").colorbox({
					onOpen:function(){ alert('onOpen: colorbox is about to open'); },
					onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
					onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
					onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
					onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
				});
                
			
			});
</script>
</head>

<body>
<a class="group1" href="#1">
<img src="img.jpg" width="145">
</a>

<div style="display: none">
<div id="1">
Some content

<a class="hideBtn_v1" title="Показать\Скрыть блок"  ="" onclick="$('#hideCont1_v1').slideToggle('normal');$(this).toggleClass('show');return false;" href="javascript://">Показать</a>

<div id="hideCont1_v1" style="display: none;">
<h3>Основное содержимое скрытого блока</h3>
<p>Some text.</p>
</div>

</div>
</div>
</body>
</html>


Где-то так.
Ответить с цитированием