文章详细
html5+ js +css3 点击后水波纹扩散效果 兼容移动端
 2017/6/15 15:00:48 评论:0人 阅读次数:17504

一、概述:

其实很早就看到过点击后水波纹扩散效果这种了,APP中比较常见,所以今天特意找了一些资料然后做成DEMO分享给大家,让大家更容易的学到并运用到实际项目中去。

实例效果如下:

html5+ js +css3 点击后水波纹扩散效果 兼容移动端

 

现在 新版 chrome 59.0 PC端 在【设置】中很多操作按钮已经有这个效,果如下:

html5+ js +css3 点击后水波纹扩散效果 兼容移动端

二、实现原理:

1、超出按钮隐藏;

2、里面新增加标签模拟圆;

3、用JS控制圆的宽度及坐标;

4、关键是css3样式控制从小到大逐渐透明的动画。

三、源代码:(兼容移动端)预览地址:http://www.86y.org/demo/ripple/

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<title>html5+ js +css3 点击后水波纹扩散效果 兼容移动端-幸凡学习网</title>

<style>
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;}}
</style>
</head>
<body>
<h1 class="center">html5 +css3 点击后水波纹扩散效果 兼容移动端</h1>
<div class="main center">
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
    <button class="btn">BUTTON</button>
</div>
<script>
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);
</script>
</body>
</html>

四、结语:

使用过程可能有些其它标签会碰到不一样的问题,希望大家可以指出来。谢谢!

(完)

如需转载请注明出处:http://www.86y.org/art_detail.aspx?id=828【html5+ js +css3 点击后水波纹扩散效果 兼容移动端】幸凡学习网
0
 
相关文章
推荐文章
Created By Charry-May 3,2010
粤ICP备10093478号-1
顶部