|
|
交易无需等待,成交就是现在,全面资源整合网络大咖云集,让你轻松玩转互联网!
您需要 登录 才可以下载或查看,没有账号?立即注册
×
我之前拿来做卡片或者徽章当背景色用的,记录一下吧。
- .UserBadge-32 {
- position: relative;
- background-image: -webkit-linear-gradient(45deg, rgb(44, 62, 80), rgb(39, 174, 96), rgb(41, 128, 185), rgb(231, 76, 60), rgb(142, 68, 173));
- background-size: 400%;
- padding: 30px 0px;
- animation: 15s ease 0s infinite normal none running bganimation;
- }
- @keyframes bganimation {
- 0%{
- background-position: 0% 50%;
- }
- 50%{
- background-position: 100% 50%;
- }
- 100%{
- background-position: 0% 50%;
- }
- }
- #caired{border-radius: 10px;}
- .UserBadge {
- display: inline-block;
- margin: 0 5px 10px 0;
- padding: 6px 12px;
- color: #998066;
- border: 2px solid #ffc64b;
- border-radius: 5px;
- transition: all 150ms ease-in-out;
- text-align: center;
- vertical-align: middle;
- cursor: pointer;
- white-space: nowrap;
- outline: none;
- -webkit-user-select: none;
- user-select: none;
- }
复制代码
|
|