How to use hover selector

php中世界最好的语言
Release: 2018-03-20 17:07:03
Original
2414 people have browsed it

This time I will show you how to use the hover selector, what are the precautions when using the hover selector, the following is a practical case, let's take a look.

Sometimes you need to use the two mouse events mouseover and mouseout, but writing js is more troublesome, and you have to add listening events, so things that can be solved with css should be solved with css as much as possible. This can improve performance, as follows Let me talk about my understanding of :hover:
When I was learning computer applications, the teacher taught us to use the :hover selector to complete the drop-down menu. Before, I only knew how to use it, but I didn’t know why. So used, now write down how to use it

Definition and usage

Definition:

:hover selector is used to select the mouse pointer floating on it element.

:hover selector applies to all elements

Usage 1:

This means: when the mouse hovers over the style a, the background color of a is set For yellow

a:hover
    { 
        background-color:yellow;
    }
Copy after login

This is the most common usage, it just changes the style through a

Usage 2:

Use a to control other blocks Style:

Use a to control a's child element b:

    .a:hover .b {
            background-color:blue;
        }
Copy after login

Use a to control a's sibling element c (sibling element):

    .a:hover + .c {
            color:red;
        }
Copy after login

Use a to control a's Nearest element d:

    .a:hover ~ .d {
            color:pink;
        }
Copy after login

To summarize:

1. Add nothing in the middle to control child elements;
2. '+' controls sibling elements ( Brother elements);
3. '~' controls nearby elements;

Example

Use a button to control the movement state of a box. When the mouse moves to the button When the mouse is above, the box stops moving, and when the mouse moves away, the box continues to move

body code:

    
        

stop

        

    
Copy after login

css style:

    
Copy after login

Achievement effect:

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use CSS weird box model and standard box model

css3 animation sequence animation

The above is the detailed content of How to use hover selector. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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!