Heim  >  Artikel  >  Web-Frontend  >  Rect,RoundRect(矩形)对象_VML相关

Rect,RoundRect(矩形)对象_VML相关

WBOY
WBOYOriginal
2016-05-16 12:09:582256Durchsuche

用VML画矩形,必须设置 style="width:50;height:50",其他就没有什么特别的。在这节,顺便讲讲 shadow 对象和 TextBox对象:
    

    RoundRect顾名思义,是圆角的矩形,这种形状在画流程图的时候很常用,如果加上阴影,就更好看了:
    
    on="T" type="single" color="#b3b3b3" offset="5px,5px"/>
    

    在VML里面,True 和 False 可以简写成 T 和 F。Shadow 中的 offset 属性用来设置 偏移原图的 x,y 值。 on 属性用来决定是否显示阴影。在矩形中写字,要用到 TextBox 对象。TextBox 比较关键的属性是 inset(left,top,right,bottom),意思是隔图形边的上下左右多少范围内定位文字:
    
    
    inset="5pt,5pt,5pt,5pt" style="font-size:10.2pt;">Hello world!
    
Hello world!

    当然你也可以直接插入HTML代码,比如说插入一个
Hello World!

效果是一样的。
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn