Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to move the mouse to div to show the hidden div effect in css3

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the knowledge of "how to move the mouse to div to show hidden div effect in css3". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

In css, you can use the ": hover" selector and the opacity attribute to show or hide the div element when you move the mouse over the div element, with the syntax of "div:hover {opacity:0}" or "div:hover {opacity:1}".

The operating environment of this tutorial: windows10 system, CSS3&&HTML5 version, Dell G3 computer.

How to move the mouse to div to show the hidden div effect in css3

1. Move the mouse to div to display div

You can use the hover selector and the opacity property to move the mouse to div to display the div effect. An example is as follows:

Div {width: 380px; height: 250px; background-image: url (1118.02.png); opacity: 0;} div:hover {width: 380px; height: 250px; background-image: url (1118.02.png) Opacity: 1;} move the mouse over the div

Output result:

2. Move the mouse to div to hide div

You can still use the hover selector and the opacity property to move the mouse to div to display the div effect, as shown in the following example:

Div {width: 380px; height: 250px; background-image: url (1118.02.png);} div:hover {opacity: 0;} mouse over the div

Output result:

This is the end of the introduction of "how to move the mouse to div to show hidden div effects in css3". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report