html 标签scss

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 标签scss相关的知识,希望对你有一定的参考价值。

/* ------------------------------------------- */
/* Tabs */
/* ------------------------------------------- */


#tabwrap {
	background: #fff;
	overflow: hidden;
	width: 100%;


}
#tabs { overflow: hidden;
	/* tuck under border below */
	position: relative;
	top:1px;


}
#tabs li { list-style: none; }
#tabs li a {
	float: left;
	display: block;
	padding: 10px;

	width: 25%;
	text-decoration: none;
	text-align: center;
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	background: #EEE;



}

#tabs li a:hover { background: #EEE; }
#tabs li:first-child a { border-right: 0; }
#tabs li:last-child a { border-left: 0; }
#tabs li.current:last-child a {
	border-left: 1px solid #CCC;
}




.tab-content .current {

    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;


	-webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;


}




#tabs li.current a {
	background: #fff;
	pointer-events: none;
	border-right: 1px solid #CCC;
	border-bottom: 1px #FFF solid;

}

.tab-content > div {
	clear: both;
	padding: 20px;
	display: none;
}


.tab-content ul {
	margin-bottom: 0;
}

.tab-content {
	border: 1px solid #CCC;
	margin-bottom: $space;

}
.tab-content .current { display: block; }
.tab-content #home.first { display: block; }

.tab-content .product-codes {

  &__list {
    margin-bottom: 0;
  }

	&__list li {
		list-style-type: circle;
    &:last-child {
      margin-bottom: 0;
    }
	}



}
	jQuery('#tabs li:first-child').addClass('current');
	jQuery('#content div:first-child').addClass('current');

	jQuery('#tabs li a').click(function(e){

	    jQuery('#tabs li, #content .current').removeClass('current');
	    jQuery(this).parent().addClass('current');
	    var currentTab = jQuery(this).attr('href');
	    jQuery(currentTab).addClass('current');
	    e.preventDefault();

	});
<div id="tabwrap">
	
	<!-- TABS -->
	<ul id="tabs">
		
		<li class="current"><a href="#tab1">Tab 1</a></li>
		<li><a href="#tab2">Tab 2</a></li>
		<li><a href="#tab3">Tab 3</a></li>
	</ul>
	
	<!-- TAB CONTENT -->
	<div id="content" class="tab-content">
		
		<div id="tab1" class="current">
			Tab 1
		</div>
		
		<div id="tab2" class="current">
			Tab 2
		</div>
		
		<div id="tab3" class="current">
			Tab 3
		</div>
		
	</div> <!-- content -->
</div>

以上是关于html 标签scss的主要内容,如果未能解决你的问题,请参考以下文章

如何在 HTML 中包含 SCSS 文件 [关闭]

scss 标签dot.scss

scss 简单的标签系统(jQuery)

scss 媒体聚合标签

scss 评论标签自定义

scss 响应式图像,srcset,图片标签