<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<style>
* {
margin: 0;
padding: 0;
}
html,
body,
#app {
height: 100%;
width: 100%;
position: relative;
}
.container {
width: 200px;
height: 100px;
border: 1px solid;
position: absolute;
overflow: hidden;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
}
.start {
position: absolute;
border-radius: 50%;
background: red;
transition-property: transform, background-color, opacity;
transform: scale(0);
}
.end {
transform: scale(1) !important;
opacity: 0;
}
</style>
<div id="app">
<div class="container">
</div>
</div>
<script>
const container = document.querySelector('.container')
container.addEventListener('click', e => {
const offsetX = e.clientX - e.currentTarget.offsetLeft;
const offsetY = e.clientY - e.currentTarget.offsetTop;
const { offsetHeight, offsetWidth } = e.currentTarget;
const lx = Math.max(offsetX, offsetWidth - offsetX);
const ly = Math.max(offsetY, offsetWidth - offsetY);
const r = Math.sqrt(Math.pow(lx, 2) + Math.pow(ly, 2));
startAnimation(container, offsetX, offsetY, r);
})
async function startAnimation(el, x, y, r, duration = 1) {
const styles = {
width: 2 * r + 'px',
height: 2 * r + 'px',
left: x - r + 'px',
top: y - r + 'px',
transitionDuration: `${duration}s`
};
const div = document.createElement('div');
div.className = 'start';
Object.keys(styles).forEach(key => {
div.style[key] = styles[key];
})
el.appendChild(div);
const nextTick = () => new Promise(res => requestAnimationFrame(res));
const sleep = (duration) => new Promise(res => setTimeout(res, duration));
await nextTick();
div.classList.add('end');
await sleep(duration * 1000);
el.removeChild(div);
}
</script>
</body>
</html>
水波纹
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 本文主要参考 Android 自定义view实现水波纹效果 1、确定水波函数方程 是一个标准的正余弦函数:**y ...
- 很多珠友,手上多少有一条小叶紫檀,但是对于高端的品质,了解有多少呢?高品级紫檀还是以棕眼越少品质越好,印度南部山地...