or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Do you want to remove this version name and description?
Syncing
xxxxxxxxxx
也許可以放點東西?
tags:
開工
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →Click to open TOC
置中排版大補帖
https://www.w3.org/Style/Examples/007/center.en.html
全域css調整
https://hackmd.io/@2021ncu-fresh-code/S1VGtA7pd
來自柏儒的貼心小提醒
ngrok載完以後打
應該可以把測試的server公開到公網上讓企劃組看,不過速度頗慢。
執行概況
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →Forwarding前面的網址就是被公開的連結,每次啟動都會換掉,不用擔心
沒有設計滾輪主頁可以使用的現有css
Nuxt 動畫沒有觸發
如果兩個頁面設定的layout不一樣,可能會導致在page設定好的transition無效
Page A
Page B
當A頁面跳轉到B頁面時不會觸發transition,如果在B頁面中加入
layout: "groups"
就能解決問題補:
transition
的名稱設定也要相同字型整理
標題: 各種書法字體
內文: 微軟正黑體
SVG Animation
一開始接到兩個筆刷的hover動畫,想著效果蠻常見也挺直覺的,後來才發現根本不是靠簡單的CSS Animation就可以解決的。
結論: 不要輕易答應企劃的動畫需求
Why svg?
想要呈現筆刷圈選or平抹用CSS transform幾乎很難做到,svg可以透過path繪製筆刷的路徑,疊上遮罩(.png),基本上可以完美解決企劃的要求了!
Steps
橫抹筆刷
圈選筆刷
絕對位置在手機開小鍵盤的時候可能會跑版
除了強制固定body的大小,好像沒看到什麼比較好的方法。目前我是想辦法用flex container還有relative的子元素來調整。
nuxt link問題
nuxt link的點擊事件要改用
@click.native
,但是使用emit仍然會有問題