一、概述:
其实很早就看到过点击后水波纹扩散效果这种了,APP中比较常见,所以今天特意找了一些资料然后做成DEMO分享给大家,让大家更容易的学到并运用到实际项目中去。
实例效果如下:
现在 新版 chrome 59.0 PC端 在【设置】中很多操作按钮已经有这个效,果如下:
二、实现原理:
1、超出按钮隐藏;
2、里面新增加标签模拟圆;
3、用JS控制圆的宽度及坐标;
4、关键是css3样式控制从小到大逐渐透明的动画。
html5+ js +css3 点击后水波纹扩散效果 兼容移动端-幸凡学习网body {margin:0;padding:0;}
.center{text-align:center}
.btn {position:relative;width:13em;height:3em;margin:2em;border:none;outline:none;-webkit-appearance: none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);letter-spacing:.2em;font-weight:bold;background:#999;cursor:pointer;overflow:hidden;user-select:none;border-radius:2px;color:#fff;}
button:nth-child(2) {background:#4285f4;}
button:nth-child(3) {background:#00bad2;}
button:nth-child(4) {background:#ff8a80;}
button:nth-child(5) {background:#ffae00;}
button:nth-child(6) {background:#aec156;}
button:nth-child(7) {background:#a060a8;}
button:nth-child(8) {background:#a78660;}
button:nth-child(9) {background:#5da065;}
button:nth-child(10) {background:#5e6b9a;}
button:nth-child(11) {background:#9a5e5e;}
button:nth-child(12) {background:#666;}
.ripple {position:absolute;background:rgba(0,0,0,.15);border-radius:100%;transform:scale(0);pointer-events:none;}
.ripple.show {animation:ripple .75s ease-out;}
@keyframes ripple {to {transform:scale(2);opacity:0;}}
html5 +css3 点击后水波纹扩散效果 兼容移动端
BUTTON
BUTTON
BUTTON
BUTTON
BUTTON
BUTTON
BUTTON
BUTTON
BUTTON
BUTTON
BUTTON
BUTTON
var addRippleEffect = function (e) {
var target = e.target;
if (target.className.toLowerCase() !== 'btn') return false;
var rect = target.getBoundingClientRect();
var ripple = target.querySelector('.ripple');
if (!ripple) {
ripple = document.createElement('span');
ripple.className = 'ripple';
ripple.style.height = ripple.style.width = Math.max(rect.width, rect.height) + 'px';
target.appendChild(ripple);
}
ripple.classList.remove('show');
var top = e.offsetY- (ripple.offsetHeight / 2);
var left = e.offsetX - (ripple.offsetWidth / 2);
ripple.style.top = top + 'px';
ripple.style.left = left + 'px';
ripple.classList.add('show');
return false;
}
document.addEventListener('click', addRippleEffect, false);
四、结语:
使用过程可能有些其它标签会碰到不一样的问题,希望大家可以指出来。谢谢!
(完)
大家有什么问题或技术上的想法可以在此与大家分享,也可以加入前端爱好者QQ群(141999928)一起学习进步:【幸凡前端技术交流群】
0
如果您觉得本文的内容对您的学习有所帮助,捐赠与共勉,支付宝(左)或微信(右)