您好,登錄后才能下訂單哦!
要在按鈕上實現點擊波紋效果,您可以使用HTML、CSS和JavaScript。這里是一個簡單的示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ripple Effect</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<button class="ripple-button" onclick="createRipple(event)">點擊我</button>
<script src="script.js"></script>
</body>
</html>
styles.css
的CSS文件,并添加以下樣式:.ripple-button {
position: relative;
overflow: hidden;
background-color: #3f51b5;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 4px;
}
.ripple {
position: absolute;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 50%;
transform: scale(0);
animation: ripple-animation 1s linear;
pointer-events: none;
}
@keyframes ripple-animation {
to {
transform: scale(4);
opacity: 0;
}
}
script.js
的JavaScript文件,并添加以下代碼:function createRipple(event) {
const button = event.currentTarget;
const ripple = document.createElement("span");
const diameter = Math.max(button.clientWidth, button.clientHeight);
const radius = diameter / 2;
ripple.style.width = ripple.style.height = `${diameter}px`;
ripple.style.left = `${event.clientX - button.getBoundingClientRect().left - radius}px`;
ripple.style.top = `${event.clientY - button.getBoundingClientRect().top - radius}px`;
ripple.classList.add("ripple");
button.appendChild(ripple);
setTimeout(() => {
ripple.remove();
}, 1000);
}
現在,當您點擊按鈕時,應該會看到一個波紋效果。這個效果是通過在按鈕上創建一個圓形的<span>
元素并應用CSS動畫來實現的。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。