小书匠
scrat's acorn
- gitalk 在 action 时自动创建 issue
css 小技巧
https://suziwen.github.io/acorns/tech/using-css-to-control-text-selection
不需要 javascript , 实现单击一个元素,就默认选择全部文字,再单击一次,恢复普通选择.
- 将元素 css 设置为
user-select: all;
- 第一次点击后,设置一个
@keyframes
动画, 该动画延时执行在:focus
时触发user-select: text;
,这样,第二次点击时,就会变成普通的文本选择
- 1code {
- 2 -webkit-user-select: all;
- 3 user-select: all;
- 4}
- 5
- 6code:focus {
- 7 animation: select 100ms step-end forwards;
- 8}
- 9
- 10@keyframes select {
- 11 to {
- 12 user-select: text;
- 13 }
- 14}
生活
计算桌子的高度
- 1(170 + 130) / 2 = 150
- 1x + y - z = 170
- 2z + y - x = 130
- 3-----------------
- 4(x + z) + (y + y) - (z + x) = (170 + 130)
- 5-----------------
- 62y = 300
- 7y = 150
英语
go nuts