摘要:
缓动动画 小球下落效果 @keyframes bounce { 60%, 80%, 100% { transform: translateY(80px); animation-timing-function: cubic-bezier(.215, .61, .355, 1); } 70% { tra 阅读全文
摘要:
选择适合的鼠标光标 禁用光标 cursor: not-allowed; 隐藏光标 cursor: url('transparent.gif'); cursor: none; 扩大可点击区域 伪元素: button { position: relative; } button::before { co 阅读全文
摘要:
背景侵入边框问题 background-clip: padding-box; background-clip的属性有content-box、padding-box、border-box, text, 默认为border-box,所以背景会侵入边框,改为padding-box,背景会裁剪到paddin 阅读全文