有趣的东西
来源
标题 | 链接 | 作者 |
---|---|---|
盘点一些你不太熟悉但是十分有趣的HTML标签 | https://www.bilibili.com/video/BV1za4y1E7oS | lookroot |
我和你 | 你和我 | 在一起 |
我爱你 | 你爱我 | 生一群 |
html
有趣的html
input
<input type="color" name="">
<input type="range" name="">
<input type="time" name="">
<input type="date" name="">
<input type="datetime-local" name="">
<input type="week" name="">
list
1 | <input type="list" list="emaillist" name=""><br> |
progress
1 | <progress value="" max=""></progress><br> |
meter
1 | <meter max="100" min="0" low="30" optimum="50" high="70" value="20"></meter><br> |
小东西合在一起
<del>删除线</del>
删除线typora-markdown:~~删除线~~
删除线<ins>下划线</ins>
下划线<u>下划线</u>
下划线(不推荐)<abbr title="你放上来了">放上来</abbr>
放上来<mark>我学到了</mark>
我学到了<details><summary>点击查看更多</summary><p>没更多</p></details>
点击查看更多
没更多
图片
1 | <figure> |
1 | <picture><!--可以实现响应式图片,应该需要服务器支持--> |
from
1 | <form action=""> |
1 | <form action=""> |
1 | <form action="MAILTO:[email protected]" method="POST" enctype="text/plain"> |
1 | <dialog id="dialog" open> |
偶然了解
- 2024年1月22日 23:43:02 html特性,每个标签都有一个title属性,可以用来显示信息。鼠标放上去就可以显示。
hexo-next
全文阅读
read_more_btn: true
阅读全文的按钮显示。
excerpt_description: true
如果true
,则预览写在description:
即可。如果false
,则需要用<!-- more -->
来分割。前者不好写复杂的东西,不能回车等,需要用html。后者则需要每次都写。
内容显隐
{% fold 点击显/隐内容 %}`
`{% endfold %}
1 | <div> |
思维导图
1 | {% markmap 400px %} |
另一种用#
的不展示了。另外高版本的mermaid支持思维导图。
画图
- [使用Typora画 流程图、时序图、顺序图、甘特图、等图详解_typora流程图-CSDN博客]
- Draw Diagrams With Markdown - Typora Support (typoraio.cn)
- 在Typora里使用mermaid画图
hexo和next文档
可以阅读到一些用法,比如标签插件、变量等。