CSS implements simple tab switching effect (with code)

不言
Release: 2018-11-27 16:21:29
forward
2644 people have browsed it

The content of this article is about realizing a simple tab switching effect with CSS (with code). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Using the idea of ​​anchor points, a simple tab switching effect can be achieved.

Page layout and style:

  
1
  
2
  
3
  
4
  1   2   3   4
  ...... .box {    height: 10em;    border: 1px solid #ddd;    overflow: hidden; } .list {    line-height: 10em;    background: #ddd; }
Copy after login

The container is set with overflow:hidden, and the height of each list is the same as the height of the container, thus ensuring that only one list is always displayed. When we click a button, such as the third button, the anchor chain of the URL address will be changed to #three, thus triggering the anchor positioning of the third list with the id three, that is, changing the scroll height of the container to make the upper edge of list 3 Align with the top edge of the scroll container to achieve a tab effect.

CSS implements simple tab switching effect (with code)

But this method has certain shortcomings:

  • First, the height of the container requires Fixed;

  • Secondly, anchor point positioning will trigger the repositioning of the form, that is, if the page can be scrolled, the click option page will also jump

In order to change this situation, use the following method. The page layout is:

    
1
    
2
    
3
    
4
                   
Copy after login

Written like this, even if the page form has scroll bars, in most cases, the jumping phenomenon will not occur. The principle is to insert an invisible input box into each list, and then the tab button becomes a element, and is passed ## The #for attribute is associated with the id of the input box. In this way, clicking the option button will trigger the focus behavior of the input box, trigger anchor positioning, and implement options. Card switching effect.

However, if the above technology is to be used in actual projects, it cannot be separated from the support of JavaScript. One is the selection effect of the tab button, and the other is that some areas of the processing list will still jump when they are outside the browser. The problem.

Related processing is similar to the following, using jQuery syntax:

$('label.click').removeAttr('for').on('click', function() { $('.box').scrollTop(xxx); 'xxx'表示滚动数值
});
Copy after login

The above is the detailed content of CSS implements simple tab switching effect (with code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!