含倒计时的爆炸特效

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了含倒计时的爆炸特效相关的知识,希望对你有一定的参考价值。

<style>
.content{
width: 500px;
margin:0 auto;
}


.content .img1{
animation: zhazha 1s infinite;
}


.content .img2 {
animation: boom 1s 1;
}


@keyframes zhazha{
from{
                transform: scale(0.8);
}to{
                transform: scale(1.1);
}
}


@keyframes boom{
from{
                transform: scale(0);
}to{
    transform: scale(1);
  }
}


</style>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/boom.js"></script>
</head>
<body>
<input type="button" class="btn" value="炸了炸了" />
<div class="content">
<p class="boom"></p>
    <img class="img1" src="img/boom.jpg"/>
    <img class="img2" src="img/booms.jpg"/>

</div> 

 

<script>

$(function(){


$(".content").hide();


$(".btn").click(function(){
var time=3;


var set=setInterval(function(){
if(time>0){
$(".boom").text(time-- +"s");
$(".content").show();
$(".content .img2").hide();
}else{
$(".content .img1,p").hide();
$(".content .img2").show();
}
},1000);
})
})

 

</script>

以上是关于含倒计时的爆炸特效的主要内容,如果未能解决你的问题,请参考以下文章

按钮特效-注册按钮倒计时效果

兼容移动端以及safary浏览器 的倒计时特效

html自动倒计时

Kivy教程之 08 倒计时App实现timer调用(教程含源码)

jquery写 60s倒计时

jquery实现倒计时效果