zoukankan      html  css  js  c++  java
  • Html --用简单的<hr>实现多样化分割效果

    最基本的:<hr width=300 size=1 color=#5151A2 align=center noshade>。

    <!--其中 width 规定线条的长度,还可以是百分比;color 表示颜色,size 表示厚度;align 规定线条位置,有left、right、center;noshade 表示是否有立体效果-->

      两头渐变透明:

    <hr width=80% size=3 color=#5151A2 style="FILTER: alpha(opacity=100,finishopacity=0,style=3)">

    --------------------------------------------------------------------------------

      右边渐变透明:

    <hr width=80% size=3 color=#5151A2 style="FILTER: alpha(opacity=100,finishopacity=0,style=1)">

    --------------------------------------------------------------------------------

      画虚线:

    <hr width=80% size=1 color=#5151A2 style="border:1 dashed #5151A2">

    --------------------------------------------------------------------------------

      画双线:

    <hr width=80% size=3 color=#5151A2 style="border:3 double green">

    --------------------------------------------------------------------------------

      立体效果:

    <hr width=80% size=3 color=#5151A2 style="filter:progid:DXImageTransform.Microsoft.Shadow(color#5151A2,direction:145,strength:15)">

    --------------------------------------------------------------------------------

      纺棰形:

    <hr width=80% size=30 color=#5151A2 style="filter:alpha(opacity=100,finishopacity=0,style=2)">

    --------------------------------------------------------------------------------

      钢针效果:

    <hr width=80% size=3 color=#5151A2 style="filter:progid:DXImageTransform.Microsoft.Glow(color=#5151A2,strength=10)">

    <hr>标签的作用是产生一线水平线

    <hr>标签的属性包括

    属性 值 描述 DTD align  center left right 规定水平线的排列。 TF noshade noshade  当设置为 true 时,水平线呈现为纯色(2D 效果)。

    当设置为 false 时,水平线显示为双色凹槽(3D 效果)。

    TF size  pixels % 规定水平线的厚度(高度)。 TF width  pixels % 规定了水平线的宽度。 TF 看下面的例子

    <hr align="center">

    <hr align="left">

    <hr align="right">

    <hr noshade="true">

    <hr noshade="false">

    <hr size="5">

    <hr width="500px">

    <hr align="left" noshade="false" size="4" width="500px" color="#ff0000">

    显示结果分别为:

    没有设置宽度的水平线默认为100%,所以前三条设置的对齐看不到效果

    1、普通分隔线:<hr>

    2、分隔线宽度属性:<hr width=50%> 或者 <hr width=250> (宽度为实际点数或百分比)

    3、分隔线位置属性:<hr align=right width=50%> (位置分为 Left、Center、Right 三种)

    4、分隔线厚度属性:<hr style="height:10px"> (奇怪,height=10 似乎不能起到效果)

    5、分隔线无阴影属性:<hr style="height:10px" noshade>

    6、分隔线彩色属性:<hr color=red> 或者 <hr color=#FF0000> (颜色可调)

    7、渐变颜色的分隔线: <hr style="filter:alpha(opacity=5,finishopacity=100,style=1);height:10px" color=green>

    <hr style="filter:alpha(opacity=100,finishopacity=5,style=1);height:10px" color=blue>

    8、中心透明的分隔线: <hr style="filter:alpha(opacity=0,finishopacity=100,style=2);height:12px" color=orange>

    <hr style="filter:alpha(opacity=0,finishopacity=100,style=3);height:12px" color=#FF00FF>

    9、中心不透明的分隔线: <hr style="filter:alpha(opacity=100,finishopacity=0,style=2);height:15px" color=yellow>

    <hr style="filter:alpha(opacity=100,finishopacity=0,style=3);height:15px" color=#00FFFF>

    10、波浪线: <hr style="filter:wave(strength=9,freq=2,lightstrength=20,phase=9);height:15px" color=pink width=95%>

    11、三色线: <hr style="border-top: #ff0000 solid; color: #00ff00; border-bottom: #0000ff solid; height: 9px">

    12、虚线: <hr style="border-top: 2px dashed; border-bottom: 2px dashed; height: 2px" color=black>

    13、竖线: <hr style="height:100px; 4px" color=orange>

    <hr style="filter:alpha(opacity=100,finishopacity=5,style=2); height:100px; 5px" color=navy>

    <hr style="filter:alpha(opacity=0,finishopacity=100,style=2);height:100px; 4px" color=red>

    额,来源记不清了。

  • 相关阅读:
    Linux(CentOS)下squid代理服务器配置-五岳之巅
    用类实现二叉树
    django--02 模板的使用
    django --01 helloworld样例入门
    微指数爬虫
    celery_01 _celery安装启动
    python多线程几种方法实现
    crontab问题处理
    python可视化--matplotlib
    python网页爬虫--京东家电版块
  • 原文地址:https://www.cnblogs.com/hao-1234-1234/p/6188733.html
Copyright © 2011-2022 走看看