Line,Polyline(线)对象
程序员文章站
2024-02-29 14:42:34
line是做图中最常用的,它有两个特殊的属性 from 和 to ,就是起始点和终止点坐标。
line是做图中最常用的,它有两个特殊的属性 from 和 to ,就是起始点和终止点坐标。
<v:line from="0,0" to="100,50" style="position:relative;"/>
●如果要改变线的样式,linestyle (stroke)属性可以做到:
single(默认),thinthin,thinthick,thickbetweenthin
●如果要改变线的类型,可以用 dashstyle(stroke)属性:
<v:line style="position:relative" from="0,0" to="100,0" >
<v:stroke dashstyle="dot"/>
</v:line>
solid(默认):见上图
shortdash:
shortdot:
shortdashdot:
shortdashdotdot:
dot:
dash:
longdash:
dashdot:
longdashdot:
longdashdotdot:
●在画坐标的时候,需要箭头,vml已经定义好了箭头,在stroke体现:endarrow 和 startarrow 属性,一个是线开始的时候有箭头,另一个是线结束的时候有箭头。箭头的样式也有不少:
<v:line style="position:relative" from="0,0" to="100,0" >
<v:stroke endarrow="classic"/>
</v:line>
endarrow="block":
endarrow="classic": (这个看起来还比较舒服)
endarrow="diamond":
startarrow="oval":
startarrow="open":
polyline是 line 的变形,是不规则的连续的线。它有个特殊的属性 points ,用来设置每个点的坐标。例如:
<v:polyline filled="false" points="0,0 0,100 20,150 200,100" style="position:relative"/>
一样可以设置它的线的样式和类型以及箭头 ( ie5.0中,polyline不支持 arrow )
<v:polyline filled="false" points="0,0 0,100 20,150 200,100" style="position:relative"/>
<v:stroke startarrow="oval" endarrow="classic" dashstyle="dot" />
</v:polyline>
<v:line from="0,0" to="100,50" style="position:relative;"/>
●如果要改变线的样式,linestyle (stroke)属性可以做到:
single(默认),thinthin,thinthick,thickbetweenthin
●如果要改变线的类型,可以用 dashstyle(stroke)属性:
<v:line style="position:relative" from="0,0" to="100,0" >
<v:stroke dashstyle="dot"/>
</v:line>
solid(默认):见上图
shortdash:
shortdot:
shortdashdot:
shortdashdotdot:
dot:
dash:
longdash:
dashdot:
longdashdot:
longdashdotdot:
●在画坐标的时候,需要箭头,vml已经定义好了箭头,在stroke体现:endarrow 和 startarrow 属性,一个是线开始的时候有箭头,另一个是线结束的时候有箭头。箭头的样式也有不少:
<v:line style="position:relative" from="0,0" to="100,0" >
<v:stroke endarrow="classic"/>
</v:line>
endarrow="block":
endarrow="classic":
endarrow="diamond":
startarrow="oval":
startarrow="open":
polyline是 line 的变形,是不规则的连续的线。它有个特殊的属性 points ,用来设置每个点的坐标。例如:
<v:polyline filled="false" points="0,0 0,100 20,150 200,100" style="position:relative"/>
一样可以设置它的线的样式和类型以及箭头 ( ie5.0中,polyline不支持 arrow )
<v:polyline filled="false" points="0,0 0,100 20,150 200,100" style="position:relative"/>
<v:stroke startarrow="oval" endarrow="classic" dashstyle="dot" />
</v:polyline>
上一篇: SSM项目中配置LOG4J日志的方法
下一篇: Python进阶-函数默认参数(详解)
推荐阅读
-
Line,Polyline(线)对象
-
福建高校专项计划录取分数线2021年参考(含学校名单、招生对象、实施区域)
-
湖北高校专项计划录取分数线2021年参考(含学校名单、招生对象、实施区域)
-
辽宁高校专项计划录取分数线2021年参考(含学校名单、招生对象、实施区域)
-
Line,Polyline(线)对象
-
重庆高校专项计划录取分数线2021年参考(含学校名单、招生对象、实施区域)
-
CDR怎么将对象用作辅助线?
-
福建高校专项计划录取分数线2021年参考(含学校名单、招生对象、实施区域)
-
湖北高校专项计划录取分数线2021年参考(含学校名单、招生对象、实施区域)
-
辽宁高校专项计划录取分数线2021年参考(含学校名单、招生对象、实施区域)