Показать сообщение отдельно
  #2 (permalink)  
Старый 20.10.2010, 11:09
Особый гость
Посмотреть профиль Найти все сообщения от monolithed
 
Регистрация: 02.04.2010
Сообщений: 4,260

1. Учитесь пользоваться поиском


Что вы все так рветесь UI использовать, 5 минут не можете потратить чтобы самим эти табы написать?

<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<style type="text/css">
#tabs {margin: 0px auto;overflow: hidden;width: 204px;}
#tabs div {border-left: 1px solid #DDD;overflow: hidden;width: 205px;height: 22px;}
div a {display: block;float: left;width: 48px;border: 1px solid #DDD;border-left: none;text-align: center;text-decoration: none;}
div a:hover {background: #FBFBFB;}
ul {display: block;margin: 0px;padding: 0px;width: auto;height: auto;}
li {border: 1px solid #DDD;border-top: none;display: none;float: left;list-style-type: none;width: 195px;height: 50px;}
.display, .first {background: #EBFAFE;display: block;}
</style>

<script type="text/javascript">
$(function(){
	$('div a').each(function(i){
		$(this).click(function(){
			$(this).toggleClass('display').siblings().removeClass('display first');
			$('ul').each(function(){
				$(this).find('li:eq('+i+')').toggleClass('display').siblings().removeClass('display first');
			});
		});
	});
});
</script>
<div id="tabs">
	<div>
		<a class="first" href="#">1</a><a href="#">2</a><a href="#">3</a><a href="#">4</a>
	</div>
	<ul>
		<li class="first">#text_tab_1</li><li>#text_tab_2</li><li>#text_tab_3</li><li>#text_tab_4</li>
	</ul>
</div>



<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<div>
   <dl>
      <dt>Release Details</dt>
      <dd>Track</dd><dd>Album</dd><dd>Album</dd>
   </dl>
   <dl>
      <dt>Pricing &nbsp; Discounts</dt>
      <dd>Track</dd><dd>Album</dd><dd>Album</dd>
   </dl>
   <dl>
      <dt>Record Quality</dt>
      <dd>Track</dd><dd>Album</dd><dd>Album</dd>
   </dl>
</div>

<style type="text/css">
dl {border-bottom: 1px dotted #006B88;margin-top: 1px;text-align: left;width: 200px;}
dt {color: #466780;cursor: pointer;font: bold 16px arial, helvetica, tahoma, verdana, sans-serif;}
dd {color: #2D2D2D;font: normal 13px arial, helvetica, tahoma, verdana, sans-serif;}
</style>

<script type="text/javascript">
$(function(){
    $('div').each(function(){
        $(this).find('dd').hide();
        $(this).find('dt').click(function(){
            $(this).nextUntil('dt').slideToggle();
        });
    });
});
</script>

Последний раз редактировалось monolithed, 20.10.2010 в 11:25.
Ответить с цитированием