# 24级2班课堂笔记-H5CSS3_1 **Repository Path**: grade24-fullstack-class2/grade24-class2-note-h5css3_1 ## Basic Information - **Project Name**: 24级2班课堂笔记-H5CSS3_1 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 50 - **Created**: 2025-09-15 - **Last Updated**: 2025-09-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 24级软件2班-H5&CSS3课堂笔记 录屏地址:https://www.alipan.com/s/uKdENZhLfzo > 阿里云盘当前限制在线播放的画质,各位童鞋完全可以下载下来看 ![20250903143531](https://oss.9ihub.com/test/20250903143531.png) ### git提交流程 1. 将修改的内容添加到暂存区 ```bash git add . # 那个点代表的当前目录,整个命令的意思即:将当前目录中所有的修改加入到暂存区 ``` 2. 将添加到暂存区的修改提交到本地 ```bash git commit -m "我是提交的注释" ``` 3. 将本地提交推送到远程仓库 ```bash git push ``` ## mermaid示例 ```mermaid classDiagram class User { +int id +string username +string email +string passwordHash +datetime createdAt +login() +createPost() +commentOnPost() } class Post { +int id +string title +string content +int authorId +datetime createdAt +datetime updatedAt +boolean published +publish() +addComment() } class Comment { +int id +string content +int authorId +int postId +datetime createdAt +editContent() } class Category { +int id +string name +string description +addPost() } class Tag { +int id +string name +addToPost() } User "1" -- "*" Post : creates User "1" -- "*" Comment : writes Post "1" -- "*" Comment : has Post "*" -- "*" Category : categorized as Post "*" -- "*" Tag : tagged with ```