vue-linkto-vscode
Version:
``` 引入只需如下三步 //1、install package npm install -s vue-linkto-vscode //2、vue.config.js const { vueCodeLinkServer, vueCodeLinkLoaderConfig } = require('vue-linkto-vscode') module.exports = { ... devServer: {
33 lines (32 loc) • 615 B
CSS
.clickBall{
position: fixed;
width: 40px;
height:40px;
border-radius: 20px;
background-color:red;
opacity: 0.6;
z-index:99999
}
.hidSlow{
color: #fff;
animation: hidetip 1s 1;
animation-fill-mode: forwards;
-webkit-animation: hidetip 1s 1;
-webkit-animation-fill-mode: forwards;
}
@keyframes hidetip {
from {
transform:scale(1,1);
}
to {
transform:scale(0,0);
}
}
@-webkit-keyframes hidetip {
from {
transform:scale(1,1);
}
to {
transform:scale(0,0);
}
}