Wallpaper Engine 中 CodeTime 壁纸修改 Progress 模块
引言最近在使用 Wallpaper Engine 上的 CodeTime 壁纸时,我发现只有一个 dayProgress 未免有点单调,所以想给壁纸添上 monthProgress 和 yearProgress 模块🤔 这是当前的样式这是改后的样式可以看到只有dayProgress,现在我们对壁纸进行修改,这种壁纸是以html实现的,所以我们只需要修改源文件的代码 步骤 打开wallpaper engine找到壁纸,右键点击“在资源管理器中打开” 我们在vscode中打开这个文件夹,以下是改之前的代码 先修改html代码,我们定位到function updateTime函数,将以下代码替换到原本对于progress的计算相关的代码块 1234567891011121314// 计算日进度const startOfDay = new Date(now);startOfDay.setHours(0, 0, 0, 0);const dayProgress = ((now - startOfDay) / 86400000) * 100;//...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartttCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment

