css实现烟雾效果(css制作汽车尾⽓排放效果)
作文600字左右代码部分五脏六腑结构图
html:
<body>
<p class="smoke">
这⾥直接输⼊⽂字如:烟烟烟烟烟烟烟烟烟烟烟烟烟烟烟
</p>
缝纫机怎么穿线
</body>
<!--这⾥要在body外加⼀段js,可以使单个⽂字飘起来-->
<script>
var txt = document.querySelector(".smoke");
txt.innerHTML = place(/\S/g,"<span class='smoke_p'>$&</span>");
var arr = document.querySelectorAll(".smoke_p");
arr.forEach(function(temp){
temp.classList.add('move');
})
</script>
什么毛笔最好css:
/* 烟 */
.smoke{
position: absolute;
bottom: 93px;
right:calc(-2%);
男性名字大全/*这⾥要定义好div的⼤⼩,决定烟团的⼤⼩*/
width: 120px;
height: 80px;
text-indent: 2em;
/*⽂字颜⾊,即烟的颜⾊*/
无论也造句color:rgb(255, 255, 255);
font-size: 18px;
cursor: pointer;
ur-lect: none;
text-align: justify;
}
梦见亲人结婚.smoke span{
position: relative;
display: inline-block;
transform-origin: bottom;
text-indent: 0;
}
.smoke .move{
animation: up 3s linear infinite;
}
@keyframes up{
0%{
opacity: 0.1;
/*这⾥使⽤⾼斯吗,模糊+透明度,使⽂字糊掉*/
filter:blur(10px);
/* transform: translate(600px,-100px) rotate(360deg) scale(5); */
}
20%{
opacity: 0.5;
filter:blur(5px);
}
50%{
opacity: 0.8;
filter:blur(10px);
}
100%{
opacity: 0.2;
filter:blur(20px);
transform:translate(100px,-100px)rotate(360deg)scale(3);
}
}
js
//因为这⾥刚进页⾯不显⽰所以延时显⽰烟雾nba季后赛时间
$(".smoke").hide();
tTimeout(function(){
$(".smoke").fadeIn();
},2000);
好了,这是⼩编的⼀些开发思路,如果各位⼤佬有更好的⽅法,⿇烦在下⽅评论或者私聊⼩编哦~让⼩编⼀起学习。