마우스 클릭시 효과음 나오고 마우스에 서클 퍼지는 효과 재미 있네요..
질답에 올라온것 오류 수정하고 적용해 보니 재미 있어서 팁자료실에 올립니다.
[code]
<audio id='audio_play' src='/click.mp3'></audio>
<style type="text/css">
div.clickEffect{
position:fixed;
box-sizing:border-box;
border-style:solid;
border-color:#000000;
border-radius:50%;
animation:clickEffect 0.4s ease-out;
z-index:99999;
}
@keyframes clickEffect{
0%{
opacity:1;
width:0.5em; height:0.5em;
margin:-0.25em;
border-width:0.5rem;
}
100%{
opacity:0.2;
width:15em; height:15em;
margin:-7.5em;
border-width:0.03rem;
}
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$("body").attr("onclick", "play()");
});
function play() {
var audio = document.getElementById('audio_play');
if (audio.paused) {
audio.play();
} else {
audio.pause();
audio.currentTime = 0;
}
}
function clickEffect(e){
var d=document.createElement("div");
d.className="clickEffect";
d.style.top=e.clientY+"px";d.style.left=e.clientX+"px";
document.body.appendChild(d);
d.addEventListener('animationend',function(){d.parentElement.removeChild(d);}.bind(this));
}
document.addEventListener('click',clickEffect);
</script>
[/code]
효과음 다운로드
https://record-ay.tistory.com/32
게시판 목록
퍼블리셔팁
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 1067 | CSS | 8년 전 | 1495 | ||
| 1066 | CSS | 8년 전 | 1864 | ||
| 1065 | CSS | 8년 전 | 1456 | ||
| 1064 | CSS | 8년 전 | 1596 | ||
| 1063 | CSS | 8년 전 | 1653 | ||
| 1062 | CSS | 8년 전 | 1670 | ||
| 1061 | CSS | 8년 전 | 1498 | ||
| 1060 | CSS | 8년 전 | 4149 | ||
| 1059 | CSS | 8년 전 | 2082 | ||
| 1058 | CSS | 8년 전 | 2498 | ||
| 1057 | CSS | 8년 전 | 2040 | ||
| 1056 | CSS | 8년 전 | 1968 | ||
| 1055 | CSS | 8년 전 | 1820 | ||
| 1054 | CSS | 8년 전 | 2084 | ||
| 1053 | CSS | 8년 전 | 1876 | ||
| 1052 | CSS | 8년 전 | 2003 | ||
| 1051 | CSS | 8년 전 | 2395 | ||
| 1050 | CSS | 8년 전 | 1724 | ||
| 1049 | CSS | 8년 전 | 2305 | ||
| 1048 | CSS | 8년 전 | 1755 | ||
| 1047 | CSS | 8년 전 | 1542 | ||
| 1046 | CSS | 8년 전 | 1226 | ||
| 1045 | CSS | 8년 전 | 1556 | ||
| 1044 | CSS | 8년 전 | 2312 | ||
| 1043 | CSS | 8년 전 | 2006 | ||
| 1042 | CSS | 8년 전 | 1761 | ||
| 1041 | CSS | 8년 전 | 1723 | ||
| 1040 | CSS | 8년 전 | 1478 | ||
| 1039 | CSS | 8년 전 | 1790 | ||
| 1038 | CSS | 8년 전 | 2232 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기