search
HomeWeb Front-endCSS TutorialThe principle and implementation of writing pure CSS pop-up menu By shawl.qiu_Experience exchange

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 LI>"
  1. http://www.w3.org/TR/html4/loose.dtd">
  2. Untitled Document
  3.     
  4.         
    level
  5.         
  6.             
    level_ title
  7.             level_ title 1
  8.             level_ title 2
  9.             level_ title 3
  10.             level_ title 4
  11.             level_ title 5
  12.         
  •     
  •     
  •         
    level 1
  •         
  •             
    level_ title
  •             level_ title 1
  •             level_ title 2
  •             level_ title 3
  •             level_ title 4
  •             level_ title 5
  •         
  •     
  •     
  •         
    level 2
  •         
  •             
    level_ title
  •             level_ title 1
  •             level_ title 2
  •             level_ title 3
  •             level_ title 4
  •             level_ title 5
  •         
  •     
  •     
  •         
    level 3
  •         
  •             
    level_ title
  •             level_ title 1
  •             level_ title 2
  •             level_ title 3
  •             level_ title 4
  •             level_ title 5
  •         
  •     
  •     
  •         
    level 4
  •         
  •             
    level_ title
  •             level_ title 1
  •             level_ title 2
  •             level_ title 3
  •             level_ title 4
  •             level_ title 5
  •         
  •     

  • 1.2 兼容 IE, Opera, Firefox 的 CSS 弹出菜单(脚本实现)
      linenum
    1. nbsp;HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    2. http://www.w3.org/TR/html4/loose.dtd">
    3. Untitled Document
    4.     
    5.         
      level
    6.         
    7.             
      level_ title
    8.             level_ title 1
    9.             level_ title 2
    10.             level_ title 3
    11.             level_ title 4
    12.             level_ title 5
    13.         
    14.     
    15.     
    16.         
      level 1
    17.         
    18.             
      level_ title
    19.             level_ title 1
    20.             level_ title 2
    21.             level_ title 3
    22.             level_ title 4
    23.             level_ title 5
    24.         
    25.     
    26.     
    27.         
      level 2
    28.         
    29.             
      level_ title
    30.             level_ title 1
    31.             level_ title 2
    32.             level_ title 3
    33.             level_ title 4
    34.             level_ title 5
    35.         
    36.     
    37.     
    38.         
      level 3
    39.         
    40.             
      level_ title
    41.             level_ title 1
    42.             level_ title 2
    43.             level_ title 3
    44.             level_ title 4
    45.             level_ title 5
    46.         
    47.     
    48.     
    49.         
      level 4
    50.         
    51.             
      level_ title
    52.             level_ title 1
    53.             level_ title 2
    54.             level_ title 3
    55.             level_ title 4
    56.             level_ title 5
    57.         
    58.     

    2. 编写横排底部弹出的 CSS 菜单. 

    2.1 真正的基于 Opera, Firefox 纯 CSS 弹出菜单
      linenum
    1. HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    2. http://www.w3.org/TR/html4/loose.dtd">
    3. Untitled Document
    4.     
    5.         
      level
    6.         
    7.             
      level_ title
    8.             level_ title 1
    9.             level_ title 2
    10.             level_ title 3
    11.             level_ title 4
    12.             level_ title 5
    13.         
    14.     
    15.     
    16.         
      level 1
    17.         
    18.             
      level_ title
    19.             level_ title 1
    20.             level_ title 2
    21.             level_ title 3
    22.             level_ title 4
    23.             level_ title 5
    24.         
    25.     
    26.     
    27.         
      level 2
    28.         
    29.             
      level_ title
    30.             level_ title 1
    31.             level_ title 2
    32.             level_ title 3
    33.             level_ title 4
    34.             level_ title 5
    35.         
    36.     
    37.     
    38.         
      level 3
    39.         
    40.             
      level_ title
    41.             level_ title 1
    42.             level_ title 2
    43.             level_ title 3
    44.             level_ title 4
    45.             level_ title 5
    46.         
    47.     
    48.     
    49.         
      level 4
    50.         
    51.             
      level_ title
    52.             level_ title 1
    53.             level_ title 2
    54.             level_ title 3
    55.             level_ title 4
    56.             level_ title 5
    57.         
    58.     

    2.2 兼容 IE, Opera, Firefox 的 CSS 弹出菜单(脚本实现)
      linenum
    1. HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    2. " http://www.w3.org/TR/html4/loose.dtd">
    3. Untitled Document
    4.     
    5.         
      level
    6.         
    7.             
      level_ title
    8.             level_ title 1
    9.             level_ title 2
    10.             level_ title 3
    11.             level_ title 4
    12.             level_ title 5
    13.         
    14.     
    15.     
    16.         
      level 1
    17.         
    18.             
      level_ title
    19.             level_ title 1
    20.             level_ title 2
    21.             level_ title 3
    22.             level_ title 4
    23.             level_ title 5
    24.         
    25.     
    26.     
    27.         
      level 2
    28.         
    29.             
      level_ title
    30.             level_ title 1
    31.             level_ title 2
    32.             level_ title 3
    33.             level_ title 4
    34.             level_ title 5
    35.         
    36.     
    37.     
    38.         
      level 3
    39.         
    40.             
      level_ title
    41.             level_ title 1
    42.             level_ title 2
    43.             level_ title 3
    44.             level_ title 4
    45.             level_ title 5
    46.         
    47.     
    48.     
    49.         
      level 4
    50.         
    51.             
      level_ title
    52.             level_ title 1
    53.             level_ title 2
    54.               level_ title 3
    55. level_ title 4
    56. level_ title 5


    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
    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
    利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

    利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

    css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

    在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

    css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

    区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

    css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

    在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

    css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

    转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

    rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

    在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

    css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

    在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

    怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

    在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    WebStorm Mac version

    WebStorm Mac version

    Useful JavaScript development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools