Move "Sidebar Hover Animation" annd "Color Fade Duration" to new settings area "Animations & Transitions"

This commit is contained in:
Send_Nukez 2021-10-12 10:31:10 +02:00
parent 05180f8132
commit 3e3f140410
2 changed files with 9 additions and 9 deletions

View file

@ -74,20 +74,19 @@ document.styleSheets[0].insertRule(`
/* Config settings */
DribbblishShared.config.register({
area: "Animations & Transitions",
type: "slider",
data: {
"min": 0,
"max": 10,
"step": 0.1,
"suffix": "s"
},
key: "fadeDuration",
name: "Color Fade Duration",
description: "Select the duration of the color fading transition",
defaultValue: 0.5,
onChange: (val) => {
document.documentElement.style.setProperty("--song-transition-speed", val+"s");
}
data: {
min: 0,
max: 10,
step: 0.1,
suffix: "s"
},
onChange: (val) => document.documentElement.style.setProperty("--song-transition-speed", val + "s")
});
/* js */

View file

@ -333,6 +333,7 @@ DribbblishShared.config.register({
});
DribbblishShared.config.register({
area: "Animations & Transitions",
type: "checkbox",
key: "sidebarHoverAnimation",
name: "Sidebar Hover Animation",