New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

frontloadingpackage

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frontloadingpackage - npm Package Compare versions

Comparing version
0.0.5
to
0.0.6
+2
-2
package.json
{
"name": "frontloadingpackage",
"version": "0.0.5",
"version": "0.0.6",

@@ -14,3 +14,3 @@ "source": "src/index.ts",

"type": "git",
"url": ""
"url": "https://gitee.com/Electrolux/front-loading-plugin.git"
},

@@ -17,0 +17,0 @@

# 1.frontLoadingPlugin
一个关于loading的小插件
一个关于css loading的小插件
## 1.1 html原生
暂时有四种示例
暂时有四种实例

@@ -50,11 +50,17 @@ ```js

import loadingPlugin from "frontloadingpackage/dist/loadingPlugin.min.js"
//不知道为什么 import {cssEffect } 有一点问题
new loadingPlugin({
circleColor: "rgb(0,0,0,0.7)", // 加载圈的颜色
maskColor: "rgb(0,0,0,0.1)", // 背景蒙版的颜色
bgId:4 // 1 , 2 , 3 ,4 可选
})
let temp =new loadingPlugin(
{
circleColor: "rgb(0,0,0,0.7)",
maskColor: "rgb(0,0,0,0.1)",
bgId:1
}
)
temp.add()
setTimeout(()=>{
temp.remove()
},2000)
```