首页>>TAB标签>>带动画的响应式tab选项卡(2020-02-10)

带动画的响应式tab选项卡

带动画的响应式tab选项卡
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <div class="layout">  
  2.   <input name="nav" type="radio" class="nav home-radio" id="home" checked="checked" />  
  3.   <div class="page home-page">  
  4.     <div class="page-contents">  
  5.       <h1>Home</h1>  
  6.       <p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quas voluptates dolore id aspernatur odit minus quidem deleniti ab rerum exercitationem dolores neque officiis explicabo possimus blanditiis sed, voluptatem ut. Ab?</p>  
  7.       <p><label for="about">Learn more</label></p>  
  8.     </div>  
  9.   </div>  
  10.   <label class="nav" for="home">  
  11.     <span>  
  12.       <svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>  
  13.       Home  
  14.     </span>  
  15.   </label>  
  16.   
  17.   <input name="nav" type="radio" class="about-radio" id="about" />  
  18.   <div class="page about-page">  
  19.     <div class="page-contents">  
  20.       <h1>About</h1>  
  21.       <p>Amet consectetur adipisicing elit. Sed ipsam ad exercitationem, quo quae ullam, quidem laudantium corporis quis minima debitis nesciunt repellat. Quos dolore ex quis voluptas, minus ut?</p>  
  22.     </div>  
  23.   </div>  
  24.   <label class="nav" for="about">  
  25.     <span>  
  26.     <svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>  
  27.     About  
  28.       </span>  
  29.     </label>  
  30.   
  31.   <input name="nav" type="radio" class="contact-radio" id="contact" />  
  32.   <div class="page contact-page">  
  33.     <div class="page-contents">  
  34.       <h1>Contact</h1>  
  35.       <p>Eaque accusamus magnam error unde nam, atque provident omnis fugiat quam necessitatibus vel nulla sed quibusdam fuga veritatis assumenda alias quidem asperiores?</p>  
  36.       <p><a href="#">Get in touch</a></p>  
  37.     </div>  
  38.   </div>  
  39.   <label class="nav" for="contact">  
  40.     <span>  
  41.     <svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path></svg>  
  42.     Contact  
  43.       </span>  
  44.       
  45.   </label>  
  46. </div>  

 


原文地址:http://www.freejs.net/article_tabbiaoqian_835.html