UNPKG

vue-code-link

Version:

![Animation](https://user-images.githubusercontent.com/62974111/174468768-dcacbfaa-3565-4608-bbb3-9a1b81da4ff0.gif)

33 lines (32 loc) 615 B
.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); } }