本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
Adds smooth scrolling to settings jumps
main
Eric Amodio
6 年之前
父節點
edb0a17516
當前提交
6483c19e7c
共有
2 個檔案被更改
,包括
5 行新增
和
5 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/ui/scss/main.scss
+4
-4
src/ui/shared/app-base.ts
+ 1
- 1
src/ui/scss/main.scss
查看文件
@ -878,7 +878,7 @@ ul {
.
section-group__content
{
flex
:
auto
1
1
;
margin-bottom
:
5
0
%
;
margin-bottom
:
10
0
%
;
min-width
:
0
;
}
+ 4
- 4
src/ui/shared/app-base.ts
查看文件
@ -171,11 +171,11 @@ export abstract class App
{
height
=
header
.
clientHeight
;
}
el
.
scrollIntoView
(
{
block
:
'start'
,
behavior
:
'auto'
const
top
=
el
.
getBoundingClientRect
(
)
.
top
-
document
.
body
.
getBoundingClientRect
(
)
.
top
-
height
;
window
.
scrollTo
(
{
top
:
top
,
behavior
:
'smooth'
}
)
;
window
.
scrollBy
(
0
,
-
height
)
;
e
.
stopPropagation
(
)
;
e
.
preventDefault
(
)
;
Write
Preview
Loading…
取消
儲存