基于CSS实现鼠标悬停文字消散文字消失特效

特效介绍

今天给大家分享的是一款文字消散特效,悬停文字消失效果网页动画,画面中是一段完整的文字,您只需要悬停在文字上,即产生向上消散的动画效果。

效果截图

图片[1]-基于CSS实现鼠标悬停文字消散文字消失特效-QQ沐编程

实现代码

首先创建一个html代码文件,里面内容如下

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>点击全屏显示效果</title>
<meta name="description" content="Neat">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" user-scalable="no">
<link rel="stylesheet" href="style.css">
</head>
<body>

	<section class="main-group">
		 <p class="text">
			在当天MV拍摄的现场,导演树将黑色与白色的色差运用的很好,画面感直击内心。主唱kiki一袭白裙,与数位好友一同以真实的生活状态出镜,年龄跨度从50后一直到00后,几乎涵盖了成长状态的方方面面。虽然全部演员都没有表演经验,但仍能从他们的眼神中、微笑里读出不同的感动,找到生命中无法停止的活力与希望。整个MV的脚本从人文主义的角度出发,运用简单的方式、本色的状态表达歌词中蕴含的丰富情感,用音乐铺陈出各个年龄层人成长轨迹中的多样情绪。另外,导演组更邀请到明星狗狗KeKe、Apple、将军出镜,三位“特邀演员”入戏的演出更令人感动。
		 </p>
	</section>
</body>
<script type="text/javascript">
	let text = document.querySelector('.text');
	text.innerHTML = text.textContent.replace(/\S/g, "<span>$&</span>");
	let span = document.querySelectorAll('span');
	for(let i=0; i<span.length; i++){
		span[i].addEventListener("mouseover", ()=>{
			span[i].classList.add('action');
		})
	}
</script>
</html>

然后在这个html文件同级目录下创建一个style.css文件,里面内容如下

html, body{
	min-height: 100%;
	background: #000;
	line-height:24px;
}
*{
	margin:0;
	padding:0;
	font-size:18px;
}
ul{
	list-style:none;
}
.hide{
    display: none;
}
.lf{
	float: left;
}
.lr{
	float: right;
}
.red, .red a,.red a h5, .red a p{
    color:#FF0000 !important;
}
a {
    text-decoration: none;
    color: inherit;
}
.mr2 {
	margin-right: 1rem;
}
.ml2 {
	margin-left: 1rem;
}

.main-group{
	box-sizing: border-box;
	max-width:1000px;
	overflow: hidden;
	height:100vh;
	padding:0 5em;
	display: flex;
	align-items: center;
	margin: 0 auto;
}
.main-group .text{
	color: #fff;
	font-size: 1em;
}
.main-group .text span{
	position: relative;
	display:inline-block;
	cursor: pointer;
}
.main-group .text span.action{
	animation: smoke 2s linear forwards;
	transform-origin: bottom;
}

@keyframes  smoke{
	0%{
		opacity: 1;
		filter: blur(0);
		transform: translateX(0) translateY(0) rotate(0deg) scale(1);
	}
	50%{
		opacity: 1;
		pointer-events:none;
	}
	100%{
		opacity: 0;
		filter: blur(20px);
		transform: translateX(300px) translateY(-300px) rotate(720deg) scale(4);
	}


}

最后双击html文件,即可查看特效效果

© 版权声明
THE END
喜欢就支持一下吧
点赞9赞赏 分享