纯CSS实现页签切换效果_html/css_WEB-ITnose
主要运用了 CSS3 的 :checked 选择器,
代码结构跟使用js差不多,只是多了几个radio,
不知道性能上是js快还是css快呢?
codepen地址:http://codepen.io/YuanWing/pen/RPqvad
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"> <title>CSS3 TAB</title> <style> body { font-family: 'Microsoft YaHei'; font-size: 14px; background-color: #f5f4f7; margin: 0; color: #252525; } a { text-decoration: none; } h3, h4 { margin: 0; font-weight: 400; font-size: inherit; } ul { padding-left: 0; list-style: none; margin: 0; } p { margin-top: 0; margin-bottom: 0; } .Jhds { position: relative; } .Jhds .radio { opacity: 0; position: absolute; } .Jhds .radio:nth-of-type(1):checked ~ .tab-title label:nth-of-type(1) { color: #fff; background-color: #498fee; } .Jhds .radio:nth-of-type(2):checked ~ .tab-title label:nth-of-type(2) { color: #fff; background-color: #498fee; } .Jhds .radio:nth-of-type(3):checked ~ .tab-title label:nth-of-type(3) { color: #fff; background-color: #498fee; } .Jhds .radio:nth-of-type(1):checked ~ .tab-outer .tab-inner:nth-of-type(1) { display: block; } .Jhds .radio:nth-of-type(2):checked ~ .tab-outer .tab-inner:nth-of-type(2) { display: block; } .Jhds .radio:nth-of-type(3):checked ~ .tab-outer .tab-inner:nth-of-type(3) { display: block; } .Jhds .tab-title { font-size: 0; padding: 15px; text-align: center; } .Jhds .tab-title label{ display: inline-block; color: #498fee; text-align: center; background-color: #fff; border: 1px solid #498fee; font-size: 14px; width: 30%; padding: 5px 0; } .Jhds .tab-title label:first-child { border-right: 0 none; border-top-left-radius: 5px; border-bottom-left-radius: 5px; } .Jhds .tab-title label:last-child { border-left: 0 none; border-top-right-radius: 5px; border-bottom-right-radius: 5px; } .Jhds .tab-outer .tab-inner { display: none; } .Jhds .tab-inner li{ position: relative; background-color: #fff; } .Jhds .title:after, .Jhds .tab-inner li:before, .Jhds .tab-inner li:last-child:after{ position: absolute; left: 0; content: ''; width: 100%; height: 1px; font-size: 0; background-color: #d9d9d9; -webkit-transform: scaleY(0.5); transform: scaleY(0.5); } .Jhds .tab-inner li:before { top: 0; } .Jhds .title:after, .Jhds .tab-inner li:last-child:after { bottom: 0; } .Jhds .title { padding: 10px; position: relative; overflow: hidden; } .Jhds .title .Jhds-num { color: #498fee; white-space: nowrap; } .Jhds .title .time { float: right; display: inline-block; } .Jhds .list { padding: 10px 60px 10px 10px; position: relative; color: #252525; display: block; } .Jhds .price { color: #f90; margin-top: 5px; } .Jhds .num { position: absolute; right: 30px; top: 50%; height: 20px; line-height: 20px; margin-top: -10px; } .arrow { position: absolute; right: 10px; top: 50%; margin-top: -6px; width: 10px; height: 10px; border-left: 1px solid #cfcfcf; border-top: 1px solid #cfcfcf; -webkit-transform: rotate(135deg); transform: rotate(135deg); } @media screen and (max-width:370px) { .Jhds .title .time { float: none; } } </style></head><body> <div class="Jhds"> <input checked class="radio" type="radio" name="Jhds" id="Jhds1"> <input class="radio" type="radio" name="Jhds" id="Jhds2"> <input class="radio" type="radio" name="Jhds" id="Jhds3"> <div class="tab-title"> <label for="Jhds1">待付款</label> <label for="Jhds2">待签收</label> <label for="Jhds3">已完成</label> </div> <div class="tab-outer"> <ul class="tab-inner"> <li> <h3 id="span-class-Jhds-num-进货单号-jkdjh-span-span-class-time-今天-进货-span"> <span class="Jhds-num">进货单号:jkdjh2015072623125699</span> <span class="time">今天 23:12 进货</span> </h3> <a class="list" href="###"> <h4 id="deg-飞天茅台最好的茅台浓香-ml">60°飞天茅台最好的茅台浓香1000ml</h4> <p class="price">待确认:¥129.00</p> <span class="num">X6</span> <span class="arrow"></span> </a> </li> </ul> <ul class="tab-inner"> <li> <h3 id="span-class-Jhds-num-进货单号-jkdjh-span-span-class-time-今天-进货-span"> <span class="Jhds-num">进货单号:jkdjh2015072623965199</span> <span class="time">今天 23:12 进货</span> </h3> <a class="list" href="###"> <h4 id="deg-西凤-middot-御宴酒-精装版-ml">50°西凤·御宴酒(精装版)500ml</h4> <p class="price">已发货:¥39.00</p> <span class="num">X1</span> <span class="arrow"></span> </a> </li> </ul> <ul class="tab-inner"> <li> <h3 id="span-class-Jhds-num-进货单号-jkdjh-span-span-class-time-今天-进货-span"> <span class="Jhds-num">进货单号:jkdjh2015072623126899</span> <span class="time">今天 23:12 进货</span> </h3> <a class="list" href="###"> <h4 id="法国富乐男爵干红葡萄酒豪华大礼包">法国富乐男爵干红葡萄酒豪华大礼包</h4> <p class="price">已签收:¥369.00</p> <span class="num">X6</span> <span class="arrow"></span> </a> </li> </ul> </div> </div></body></html>

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











이 기사는 HTML & lt; Progress & Gt에 대해 설명합니다. 요소, 그 목적, 스타일 및 & lt; meter & gt의 차이; 요소. 주요 초점은 & lt; progress & gt; 작업 완료 및 & lt; meter & gt; Stati의 경우

이 기사는 HTML & LT; Datalist & GT에 대해 논의합니다. 자동 완성 제안을 제공하고, 사용자 경험을 향상시키고, 오류를 줄임으로써 양식을 향상시키는 요소. 문자 수 : 159

기사는 HTML5 크로스 브라우저 호환성을 보장하기위한 모범 사례에 대해 논의하고 기능 감지, 점진적 향상 및 테스트 방법에 중점을 둡니다.

이 기사는 HTML & lt; meter & gt에 대해 설명합니다. 범위 내에 스칼라 또는 분수 값을 표시하는 데 사용되는 요소 및 웹 개발의 일반적인 응용 프로그램. & lt; meter & gt; & lt; Progress & Gt; 그리고 Ex

이 기사는 html5 & lt; time & gt; 시맨틱 날짜/시간 표현 요소. 인간이 읽을 수있는 텍스트와 함께 기계 가독성 (ISO 8601 형식)에 대한 DateTime 속성의 중요성을 강조하여 Accessibilit를 향상시킵니다.

이 기사에서는 브라우저에서 직접 사용자 입력을 검증하기 위해 필요한, Pattern, Min, Max 및 Length 한계와 같은 HTML5 양식 검증 속성을 사용하는 것에 대해 설명합니다.

이 기사는 모바일 장치의 반응 형 웹 디자인에 필수적인 Viewport Meta Tag에 대해 설명합니다. 적절한 사용이 최적의 컨텐츠 스케일링 및 사용자 상호 작용을 보장하는 방법을 설명하는 반면, 오용은 설계 및 접근성 문제로 이어질 수 있습니다.

이 기사는 & lt; iframe & gt; 외부 컨텐츠를 웹 페이지, 공통 용도, 보안 위험 및 객체 태그 및 API와 같은 대안을 포함시키는 태그의 목적.
