Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmj01 committed Nov 20, 2023
1 parent 9410a68 commit a4f3126
Show file tree
Hide file tree
Showing 14 changed files with 77 additions and 12 deletions.
11 changes: 11 additions & 0 deletions articles/2023/smile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Smile
> 微笑美学是口腔正畸学、修复学、医学美学等学科共同关注的热点,具有美学特征额微笑应该具有协调的唇齿关系、微笑曲线以及颊廊间隙等软硬组织关系。
## 术语

- buccal corridor颊廊,将其定义为人笑时,上颌可见后牙颊侧面与口角之间的间隙,也称为负性间隙

## 参考

- 口腔固定修复中的美学重建 第1卷
- [临时网页内容](https://www.sohu.com/a/205746991_377312)
11 changes: 10 additions & 1 deletion cg/Color.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,13 @@ HDR高动态范围High dynamic range,就是添加更多的动态范围到图

- 亮度Lightness、Luminance
- 明度Brightness、Value
- 辉度Luma,把使用色觉校正的结果称为辉度
- 辉度Luma,把使用色觉校正的结果称为辉度

## JS

- [iro-core实现了颜色的转换核心](https://github.com/irojs/iro-core)
- [Okhsv and Okhsl -- Two new color spaces for color picking](https://bottosson.github.io/posts/colorpicker/)
- [Project Status, and iro.js 6.0](https://github.com/jaames/iro.js/issues/217#issuecomment-1214403290)
- [Chroma.js is a tiny small-ish zero-dependency JavaScript library (13.5kB) for all kinds of color conversions and color scales.](https://github.com/gka/chroma.js/)
- [Color conversion & manipulation library by the editors of the CSS Color specifications ](https://github.com/LeaVerou/color.js)
- [A comprehensive color library for JavaScript.](https://github.com/Evercoder/culori)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions cg/image/imageMagick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# [ImageMagick](https://imagemagick.org/)

```html
<pre>

</pre>
```

## 参考
- [ImageMagick - Drawing](https://ohmyweekly.github.io/notes/imagemagick-drawing/)

- [临时1](https://juejin.cn/post/7044561761747337223)
Binary file removed gimp/teeth-number.png
Binary file not shown.
Binary file removed gimp/teeth-number.xcf
Binary file not shown.
12 changes: 7 additions & 5 deletions index/standard.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,16 @@

## Images

- [颜色](../cg/Color.md)
- [图像格式](../others/images.md)
- [The DICOM Standard Current Edition](https://www.dicomstandard.org/current)
- [Color Profile](../gimp/ColorProfile.md)
- [exif tool](../gimp/exif.md)
- [JPEG](../gimp/JPEG.md)
- [Image Process](../gimp/ImageProcessing.md)
- [Color Profile](../cg/image/ColorProfile.md)
- [exif tool](../cg/image/exif.md)
- [JPEG](../cg/image//JPEG.md)
- [Image Process](../cg/image/ImageProcessing.md)
- [CT](../cg/ct.md)
- [GIMP](../gimp/using.md)
- [GIMP](../cg/image/gimp.md)
- [ImageMagick](../cg/image/imageMagick.md)

### Tool

Expand Down
6 changes: 3 additions & 3 deletions index/stomatological.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Stomatological

[口腔解剖图集](https://www.imaios.com/cn/e-anatomy/4/4)

[CT相关](../cg/ct.md)
- [口腔解剖图集](https://www.imaios.com/cn/e-anatomy/4/4)
- [CT相关](../cg/ct.md)
- [微笑美学](../articles/2023/smile.md)

## 概念

Expand Down
17 changes: 15 additions & 2 deletions web/css.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

# Cascading Style Sheets
# CSS-Cascading Style Sheets


## meta
Expand Down Expand Up @@ -159,6 +158,20 @@ linear transformations also can be represented by Matrix function. It combine mu

![](../images/css-matrix.svg)

## API

- clip-path 裁剪不规则形状

```css
div {
clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 0% 0%;);
}
```
- [css实现不规则](https://juejin.cn/post/7081595150661025829)

- [CSS Painting API]
- [clip-path](https://juejin.cn/post/7171609307253833764)

## Tools

### WebAIM:web accessibility in mind
Expand Down
20 changes: 19 additions & 1 deletion web/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,24 @@

- [ever polate -- Javascript Numerical Inerpolation library](https://github.com/BorisChumichev/everpolate)

### 颜色库

- [Modular, design-conscious color picker widget for JavaScript](https://iro.js.org/)
- [github](https://github.com/jaames/iro.js/)

### 其他

- [Create, read and edit .zip files with Javascript ](https://stuk.github.io/jszip/)
- [github](https://github.com/Stuk/jszip)
```js
jszip.loadAsync(new Blob([buffer])).then(zip=>{
zip.file('filename').async('ArrayBuffer').then(data=>{
console.log(data)
})
})
```

## 参考

- [Draggable objects可拖动的对象网页实现](https://www.redblobgames.com/making-of/draggable/)
- [Draggable objects可拖动的对象网页实现](https://www.redblobgames.com/making-of/draggable/)

0 comments on commit a4f3126

Please sign in to comment.