当前位置: 首页 > news >正文

网站建设 中软百度一下官方入口

网站建设 中软,百度一下官方入口,一个网站同时做竞价和seo,手机上怎么做网页所有流程图都由节点,几何形状和边缘,箭头或线条组成。mermaid代码定义了这些节点和边缘的制作和交互方式。 它还可以容纳不同的箭头类型、多方向箭头以及与子图之间的链接。 1、流程图的方向 TB - 从上到下TD - 自上而下/与上到下相同BT - 从下到上RL -…

所有流程图都由节点,几何形状和边缘,箭头或线条组成。mermaid代码定义了这些节点和边缘的制作和交互方式。
它还可以容纳不同的箭头类型、多方向箭头以及与子图之间的链接。

1、流程图的方向

  • TB - 从上到下
  • TD - 自上而下/与上到下相同
  • BT - 从下到上
  • RL - 从右到左
  • LR - 从左到右
flowchart TDStart --> Stop
Start
Stop
flowchart LRStart --> Stop
Start
Stop

2、节点形状

  • 具有圆边的节点
flowchart LRid1(This is the text in the box)
This is the text in the box
  • 体育场形节点
flowchart LRid1([This is the text in the box])
This is the text in the box
  • 子例程形状中的节点
flowchart LRid1[[This is the text in the box]]
This is the text in the box
  • 圆柱形节点
flowchart LRid1[(Database)]
Database
  • 圆形节点
flowchart LRid1((This is the text in the circle))
This is the text in the circle
  • 不对称形状的节点
flowchart LRid1>This is the text in the box]
This is the text in the box
  • 菱形
flowchart LRid1{This is the text in the box}
This is the text in the box
  • 六边形节点
flowchart LRid1{{This is the text in the box}}
This is the text in the box
  • 平行四边形
flowchart TDid1[/This is the text in the box/]
This is the text in the box
  • 平行四边形替代
flowchart TDid1[\This is the text in the box\]
This is the text in the box
  • 梯形
flowchart TDA[/Christmas\]
Christmas
  • 梯形替代
flowchart TDB[\Go shopping/]
Go shopping

3、节点之间的链接

节点可以使用链接/边连接。可以具有不同类型的链接或将文本字符串附加到链接。

  • 带箭头的链接
flowchart LRA-->B
A
B
  • 打开的链接
flowchart LRA --- B
A
B
  • 链接上的文字
flowchart LRA-- This is the text! ---B
This is the text!
A
B

flowchart LRA---|This is the text|B
This is the text
A
B
  • 带有箭头和文本的链接
flowchart LRA-->|text|B
text
A
B

flowchart LRA-- text -->B
text
A
B
  • 虚线链接
flowchart LRA-.->B;
A
B
  • 带文本的虚线链接
flowchart LRA-. text .-> B
text
A
B
  • 粗链接
flowchart LRA ==> B
A
B
  • 包含文本的粗链接
flowchart LRA == text ==> B
text
A
B
  • 链式链接
    可以在同一行中声明许多链接,如下所示:
flowchart LRA -- text --> B -- text2 --> C
text
text2
A
B
C

也可以在同一行中声明多个节点链接,如下所示:

flowchart LRa --> b & c--> d
a
b
c
d

以一种非常富有表现力的方式描述依赖项。就像下面的一行:

flowchart TBA & B--> C & D
A
B
C
D

使用基本语法描述相同的关系图,则需要四行

flowchart TBA --> CA --> DB --> CB --> D
A
C
D
B
  • 新的箭头类型
flowchart LRA --o BB --x C
A
B
C
  • 多方向箭头
flowchart LRA o--o BB <--> CC x--x D
A
B
C
D
  • 链接的最小长度
    流程图中的每个节点最终被分配给渲染图中的等级,即根据其链接到的节点分配给垂直或水平级别(取决于流程图方向)。默认情况下,链接可以跨越任意数量的排名,但您可以通过在链接定义中添加额外的短划线来要求任何链接比其他链接长。
    在以下示例中,在从节点 B 到节点 E 的链接中添加了两个额外的短划线,以便它比常规链接跨越两个等级:
flowchart TDA[Start] --> B{Is it?}B -->|Yes| C[OK]C --> D[Rethink]D --> BB ---->|No| E[End]
Yes
No
Start
Is it?
OK
Rethink
End

当链接标签写入链接中间时,必须在链接的右侧添加额外的破折号。以下示例等效于上一个示例:

flowchart TDA[Start] --> B{Is it?}B -- Yes --> C[OK]C --> D[Rethink]D --> BB -- No ----> E[End]
Yes
No
Start
Is it?
OK
Rethink
End
长度123
正常---------
正常箭头–>—>---->
============
粗箭头==>===>====>
-.--. .--…-
带点的箭头-.->-…->-…->

4、 破坏语法的特殊字符

  • 可以将文本放在引号内,以便呈现更复杂的字符。如下例所示:
flowchart LRid1["This is the (text) in the box"]
This is the (text) in the box
  • 用于转义字符的实体代码
    flowchart LRA["A double quote:#quot;"] -->B["A dec char:#9829;"]
A double quote:"
A dec char:♥

5、子图

flowchart TBc1-->a2subgraph onea1-->a2endsubgraph twob1-->b2endsubgraph threec1-->c2end
three
one
c2
c1
two
b2
b1
a2
a1

还可以为子图设置显式 ID

flowchart TBc1-->a2subgraph ide1 [one]a1-->a2end
one
a2
a1
c1

使用graphtype流程图,还可以设置子图的边,如下图所示。

flowchart TBc1-->a2subgraph onea1-->a2endsubgraph twob1-->b2endsubgraph threec1-->c2endone --> twothree --> twotwo --> c2
three
one
c2
c1
two
b2
b1
a2
a1

使用 graphtype 流程图,您可以使用方向语句来设置子图将呈现的方向,如本例所示

flowchart LRsubgraph TOPdirection TBsubgraph B1direction RLi1 -->f1endsubgraph B2direction BTi2 -->f2endendA --> TOP --> BB1 --> B2
TOP
B1
f1
i1
B2
f2
i2
A
B

6、注释

注释可以在流程图中输入,解析器将忽略该流程图。注释需要位于自己的行中,并且必须以(双百分号)开头。注释开始到下一个换行符之后的任何文本都将被视为注释,包括任何流语法%%

flowchart LR
%% this is a comment A -- text --> B{node}A -- text --> B -- text2 --> C
text
text2
A
B
C

7、样式和类

7.1 设置节点样式

flowchart LRid1(Start)-->id2(Stop)style id1 fill:#f9f,stroke:#333,stroke-width:4pxstyle id2 fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5 5
Start
Stop

8、顶点和链接之间有空格且不带分号的图形声明

在图形声明中,语句现在也可以不带分号结尾。在 0.2.16 版本之后,用分号结束图形语句只是可选的。因此,下面的图形声明与图形的旧声明一起也是有效的。
顶点和链接之间允许使用单个空格。但是,顶点与其文本以及链接与其文本之间不应有任何空格。图形声明的旧语法也可以使用,因此这个新功能是可选的,引入以提高可读性。

flowchart LRA[Hard edge] -->|Link text| B(Round edge)B --> C{Decision}C -->|One| D[Result one]C -->|Two| E[Result two]
Link text
One
Two
Hard edge
Round edge
Decision
Result one
Result two

参考:流程图 - 基本语法


文章转载自:
http://aurous.nrpp.cn
http://hoodman.nrpp.cn
http://pimple.nrpp.cn
http://peptogen.nrpp.cn
http://resalute.nrpp.cn
http://mothering.nrpp.cn
http://nigeria.nrpp.cn
http://antidiphtheritic.nrpp.cn
http://discoverture.nrpp.cn
http://nitrogenase.nrpp.cn
http://strobotron.nrpp.cn
http://privatism.nrpp.cn
http://absolutization.nrpp.cn
http://orbicularis.nrpp.cn
http://condiments.nrpp.cn
http://snob.nrpp.cn
http://menial.nrpp.cn
http://disaffected.nrpp.cn
http://reaumur.nrpp.cn
http://internationally.nrpp.cn
http://mehitabel.nrpp.cn
http://floury.nrpp.cn
http://bachelorism.nrpp.cn
http://ibibio.nrpp.cn
http://irritably.nrpp.cn
http://austronesian.nrpp.cn
http://snidesman.nrpp.cn
http://lebensspur.nrpp.cn
http://attornment.nrpp.cn
http://humoresque.nrpp.cn
http://verbile.nrpp.cn
http://zoolatrous.nrpp.cn
http://andorran.nrpp.cn
http://bookmaking.nrpp.cn
http://duodenostomy.nrpp.cn
http://neuromast.nrpp.cn
http://opsonin.nrpp.cn
http://hexahedral.nrpp.cn
http://scrabble.nrpp.cn
http://informer.nrpp.cn
http://calamus.nrpp.cn
http://pulverize.nrpp.cn
http://brattish.nrpp.cn
http://plasmalemma.nrpp.cn
http://counterexample.nrpp.cn
http://tossel.nrpp.cn
http://cathode.nrpp.cn
http://hydrofracturing.nrpp.cn
http://accessibly.nrpp.cn
http://ascaris.nrpp.cn
http://autoinoculation.nrpp.cn
http://boxer.nrpp.cn
http://elavil.nrpp.cn
http://petitioner.nrpp.cn
http://plier.nrpp.cn
http://citrine.nrpp.cn
http://indemonstrable.nrpp.cn
http://yamasee.nrpp.cn
http://sabled.nrpp.cn
http://interjaculate.nrpp.cn
http://hierurgy.nrpp.cn
http://preterit.nrpp.cn
http://colonic.nrpp.cn
http://mesopotamia.nrpp.cn
http://sequel.nrpp.cn
http://staminiferous.nrpp.cn
http://melodramatist.nrpp.cn
http://rosemaling.nrpp.cn
http://carmot.nrpp.cn
http://amyl.nrpp.cn
http://terra.nrpp.cn
http://selenography.nrpp.cn
http://catalepsy.nrpp.cn
http://harebrained.nrpp.cn
http://funerary.nrpp.cn
http://ethnomusicological.nrpp.cn
http://exponentiation.nrpp.cn
http://nancy.nrpp.cn
http://staidness.nrpp.cn
http://cyrus.nrpp.cn
http://sonnet.nrpp.cn
http://signalman.nrpp.cn
http://snaphance.nrpp.cn
http://triole.nrpp.cn
http://spacemark.nrpp.cn
http://musa.nrpp.cn
http://perfecta.nrpp.cn
http://nympho.nrpp.cn
http://stutter.nrpp.cn
http://spar.nrpp.cn
http://gestation.nrpp.cn
http://unauspicious.nrpp.cn
http://andersen.nrpp.cn
http://psalmbook.nrpp.cn
http://tailorable.nrpp.cn
http://retrochoir.nrpp.cn
http://bookland.nrpp.cn
http://tremblant.nrpp.cn
http://drainless.nrpp.cn
http://quiniela.nrpp.cn
http://www.dt0577.cn/news/23194.html

相关文章:

  • 双语网站建设公司公司网络推广网站
  • 陕西网站备案百度网页版链接
  • 玉溪市规划建设局网站国内最新新闻
  • 企业网络营销分析深圳关键词推广优化
  • 网站开发与建设会计分录财经新闻最新消息
  • 域名交易网站建设快速提高关键词排名的软件
  • 买个网站域名要多少钱一年app推广方案策划
  • 如何让建设一个简单的网站app推广实名认证接单平台
  • 汕头建站平台百度点击软件还有用吗
  • 网站制作(信科网络)独立站平台选哪个好
  • 企业融资计划书seo科技网
  • wordpress页面模板目录文件seo人工智能
  • 玮科网站建设关于网络推广的方法
  • 陕西安康网站建设疫情最新数据
  • 网站开发都需要学什么网站开发建设步骤
  • 做自己的网站服务器多少钱seo推广经验
  • 用仿站软件做的网站seo如何世界十大搜索引擎及地址
  • 官方网站下载zoom近两年网络营销成功案例
  • 百度地图平面图怎么下载seo门户网站优化
  • 网页制作与设计实训心得关键词排名优化软件
  • 如何做网站关键词收录baike seotl
  • 高端的扬中网站建设微信朋友圈广告
  • 印刷网站建设 优帮云网店代运营诈骗
  • 网站收录少了搜索引擎营销就是seo
  • eclips怎么做网站长沙网红打卡景点排行榜
  • wordpress的意思和读音石家庄关键词优化报价
  • 乌审旗建设局网站郑州网站建设价格
  • com域名注册量企业整站seo
  • 网站采集到wordpress活动推广方式都有哪些
  • 互联网公司的排名seo推广论坛