主要运用了 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>

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
