• 2024-06-07Markdown 速查表
    基本语法标题#Headinglevel1##Headinglevel2###Headinglevel3####Headinglevel4#####Headinglevel5######Headinglevel6Headinglevel1Headinglevel2Headinglevel3Headinglevel4Headinglevel5Headinglevel6段落Ireallylikeusing
  • 2024-05-13HTML 07 - Headings
    HTMLheadingsareusedtodefinethehierarchy(levels)andstructureofcontentonawebpage.Theycreateavisualhierarchy,withthehighestlevelheadingwhichish1indicatingthemostimportantcontentorthemainheading,andlower-levelheadings
  • 2024-05-07SwiftUI ScrollView 滚动视图
    代码////ContentView.swift//SwiftUIScrollView////CreatedbyCHENHaoon2024/5/7.//importSwiftUIstructContentView:View{varbody:someView{VStack(alignment:.leading){VStack(alignment:.leading){
  • 2024-04-09Sample Post
    HTMLElementsBelowisjustabouteverythingyou'llneedtostyleintheblog.Heading1Heading2Heading3Heading4BodytextThisblogisaboutblaThisisstrong.QuotationThesitesthathavebeenchosenarelistedanddescribednexttoeachwo
  • 2024-04-02Cesium 根据飞机航线计算飞机的Heading(偏航角)、Pitch(俯仰角)、Roll(翻滚角)
    需求设置飞机的一些坐标位置(经纬度高度),插值得到更多的坐标位置,然后飞机按照这些坐标集合形成的航线飞行,飞机的朝向、俯仰角以及飞机转弯时的翻转角根据坐标集合计算得出,而不需要手动设置heading、pitch、roll。坐标插值不知道为什么,可能是飞行速度变化太大,我用Cesium自带的插
  • 2024-03-03Blazor之onclick事件更新值
    <h1>EventHandlerExample1</h1><h2>@headingValue</h2><p><button@onclick="UpdateHeading">Updateheading</button></p><p><label><inputtype="checkb
  • 2023-10-25cesium 相机视口
    functionsaveView2(){varviewJson={//世界坐标(不直观)...viewer.camera.position,//弧度值(不直观)"heading":viewer.camera.heading,"pitch":
  • 2023-10-13markdown学习笔记
    markdown学习标题headinglevel1#空格headinglevel2##空格headinglevel3###空格headinglevel4####空格headinglevel5#####空格headinglevel6######空格字体斜体加粗斜体加粗删除引用猫大哥的笔记列表无序列表有
  • 2023-08-17$('[id^="heading"]')详解
    $('[id^="heading"]')是一个jQuery选择器,它选择了所有id以"heading"开头的元素。这意味着它会选中所有具有以"heading"开头的id属性的元素。举个例子,假设页面上有以下两个元素:<divid="heading1">...</div><divid="heading2">...</div>通过
  • 2023-07-25前端之Bootstarp框架
    Bootstarp简介Bootstrap是一个用于快速开发Web应用程序和网站的前端框架。Bootstrap是前端开发中比较受欢迎的框架,简洁且灵活。它基于HTML、CSS和JavaScript,HTML定义页面元素,CSS定义页面布局,而JavaScript负责页面元素的响应。Bootstrap将HTML、CSS和JavaScript封装成一个
  • 2023-06-09Python使用tkinter的Treeview组件实现表格功能
    fromtkinterimportTk,Scrollbar,Framefromtkinter.ttkimportTreeview#创建tkinter应用程序窗口root=Tk()#设置窗口大小和位置root.geometry('500x300+400+300')#不允许改变窗口大小root.resizable(False,False)#设置窗口标题root.title('通信录管理系统')#使
  • 2023-06-06Python tkinter 树形列表控件(Treeview)的使用简单举例,建立一个treeview
     importtkinterastkfromtkinter.ttkimportTreeview#创建tkinter应用程序窗口root=tk.Tk()#设置窗口大小和位置root.geometry('500x300+400+300')#不允许改变窗口大小root.resizable(False,False)#设置窗口标题root.title('通信录管理系统')#使用Tree
  • 2023-06-01DiscoTOC - 自动内容表格
    示例桌面移动终端  特性toc=tableofcontents(内容列表)通过菜单上面的设置按钮,根据当前内容的状况一键生成toc列表Toc将会一直在页面中尽显显示——滚动内容与topic的链接是同步的当你滚动过当前页面中中的主题的时候,对应这个主题的内容列表将会使用高亮来
  • 2023-06-01DiscoTOC - 自动内容表格
    示例桌面移动终端  特性toc=tableofcontents(内容列表)通过菜单上面的设置按钮,根据当前内容的状况一键生成toc列表Toc将会一直在页面中尽显显示——滚动内容与topic的链接是同步的当你滚动过当前页面中中的主题的时候,对应这个主题的内容列表将会使用高亮来进行显示(显示
  • 2023-05-152023/4/24
    HTML标题(Heading)是通过<h1>-<h6>标签来定义的.<!DOCTYPEhtml><html><head><metacharset="utf-8"><title>ZONGXP</title></head><body><h1>这是标题1</h1><h2>这是标题2</h2><h3&g
  • 2023-05-03python-docx的简单使用
    '''设置表格所有单元格的四个边为0.5磅,黑色,实线可以使用返回值,也可以不使用'''def设置表格网格线为黑色实线(table_object:object):kwargs={"top":{"sz":4,"val":"single","color":"#000000"},
  • 2023-04-22python-docx高级用法
    fromdocximportDocumentfromdocx.enum.sectionimportWD_SECTION#创建一个新文档doc=Document()#添加页眉header=doc.sections[0].headerheader.add_paragraph('Headertext')#添加页脚footer=doc.sections[0].footerfooter.add_paragraph('Footertext')#
  • 2023-04-10Bootstrap
    为了提高开发效率,前端开发者都会使用一些现成的前端组件来进行开发,本节将给大家讲解由Twitter开源的前端框架BootStrap,他的内部集成了HTML、CSS、JavaScript很多功能和组件,让开发者可以快速开发网站。Bootstrap是一个用于构建响应式(根据用户设备不同做出响应)网站的前端框架,2011
  • 2023-03-31test3
    Advertisement:)pica-highqualityandfastimageresizeinbrowser.babelfish-developerfriendlyi18nwithpluralssupportandeasysyntax.Youwilllikethoseprojects!$\sum_{i=1}^ni^2=\frac{(n^2+n)(2n+1)}{6}$$$\sum_{i=1}^ni^2=
  • 2023-03-30test3-draft-datetime
    Advertisement:)pica-highqualityandfastimageresizeinbrowser.babelfish-developerfriendlyi18nwithpluralssupportandeasysyntax.Youwil
  • 2023-03-30test3-with-more-keys
    Advertisement:)pica-highqualityandfastimageresizeinbrowser.babelfish-developerfriendlyi18nwithpluralssupportandeasysyntax.Youwil
  • 2023-03-29test3-new-version-fix-image-upload
    Advertisement:)pica-highqualityandfastimageresizeinbrowser.babelfish-developerfriendlyi18nwithpluralssupportandeasysyntax.Youwil
  • 2023-03-29test3-with-formulas
    Advertisement:)pica-highqualityandfastimageresizeinbrowser.babelfish-developerfriendlyi18nwithpluralssupportandeasysyntax.Youwil
  • 2023-03-25为什么有的人 markdown 的 heading 从 `##` 开始
    为什么有的人markdown的heading从##开始TL;DR:因为一级标题用来表示文章的title了。看到过很多文章的heading都是从<h2>(对应markdown里面的##)开始,但不知
  • 2023-03-03markdown
    Markdown学习笔记Markdown标题(title)#headinglevel1##headinglevel2###headinglevel3####headinglevel4#####headinglevel5######headinglevel6