Files
AlgerMusicPlayer/src/utils/index.ts
T

13 lines
402 B
TypeScript
Raw Normal View History

2021-07-21 15:01:39 +08:00
// 设置歌手背景图片
export const setBackgroundImg = (url: String) => {
return "background-image:" + "url(" + url + ")";
};
// 设置动画类型
export const setAnimationClass = (type: String) => {
return "animate__animated " + type;
};
// 设置动画延时
export const setAnimationDelay = (index: number = 6, time: number = 50) => {
return "animation-delay:" + index * time + "ms";
};