The principle and implementation of writing pure CSS pop-up menu By shawl.qiu_Experience exchange
Release: 2016-05-16 12:08:46
Original
5220 people have browsed it
-
The principle and implementation of writing pure CSS pop-up menu By shawl.qiu
Abstract:
This article introduces the use of CSS to write multi-style pop-up menus suitable for Opera, Firefox, and IE
## #Description:
The key point of writing a CSS pop-up menu is to display the hidden label when the mouse moves over the target.
The label to be hidden is hidden using the display:none; attribute.
Trigger display Hidden tags mainly use the :hover attribute, and use display:block; to display hidden tags.
But because browsers do not support CSS consistently.
For Opera or Firefox, we can write a pure CSS menu , they support the :hover attribute of any tag.
For IE browser, :hover only works on the a tag, but we can use the script's onmouseover, onmouseout to simulate the :hover attribute of other tags.
Therefore Writing a CSS pop-up menu suitable for IE requires the use of a few scripts.
Directory:
1. Writing a CSS pop-up menu on the right side of the vertical row.
1.1 Really based on Opera, Firefox pure CSS Pop-up menu
1.2 Compatible with IE, Opera, Firefox CSS pop-up menu (script implementation)
2. Write a horizontal bottom pop-up CSS menu.
2.1 Real pure CSS pop-up based on Opera, Firefox Menu
2.2 Compatible with IE, Opera, Firefox CSS pop-up menu (script implementation)
3. Conclusion
4. Preview
shawl.qiu
2006 -10-01
http://blog.csdn.net/btbtd
1. Write a CSS menu that pops up on the right side of the vertical row.
1.1 True Based on Opera, Firefox pure CSS popup menu
linenum
" - http://www.w3.org/TR/html4/loose.dtd">
-
-
- Untitled Document
-
-
-
-
-
-
-
1.2 兼容 IE, Opera, Firefox 的 CSS 弹出菜单(脚本实现)
linenum
- " http://www.w3.org/TR/html4/loose.dtd">
-
-
-
- Untitled Document
-
-
-
-
-
-
-
-
2. 编写横排底部弹出的 CSS 菜单.
2.1 真正的基于 Opera, Firefox 纯 CSS 弹出菜单
linenum
- " http://www.w3.org/TR/html4/loose.dtd">
-
-
-
- Untitled Document
-
-
-
-
-
-
-
2.2 兼容 IE, Opera, Firefox 的 CSS 弹出菜单(脚本实现)
linenum
- " http://www.w3.org/TR/html4/loose.dtd">
-
-
-
- Untitled Document
-
-
-
-
-
-
-
-
3. Conclusion
As can be seen from the above example, if a usable CSS pop-up menu example has been written, then the pop-up position must be written in other If you have local CSS pop-up menu, you only need to modify it slightly.
4. Preview
4.1 1.2 Preview of CSS pop-up menu (script implementation) compatible with IE, Opera, and Firefox# ##
-
/**/
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
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31