这篇文章主要介绍“HTML5怎么实现动态文字遮罩背景特效”,在日常操作中,相信很多人在HTML5怎么实现动态文字遮罩背景特效问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”HTML5怎么实现动态文字遮罩背景特效”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
创新互联-专业网站定制、快速模板网站建设、高性价比向阳网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式向阳网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖向阳地区。费用合理售后完善,十载实体公司更值得信赖。
鼠标滑过遮罩文字背景动画效果
第一种效果的最终效果如下,用鼠标放上去看看:
Welcome to htmleaf.com
HTML结构
Welcome to Codicode
CSS样式
body
{
background-color:#fff;
}
#bkDiv
{
// The rainbow Css3 pattern
background: linear-gradient(0deg, transparent 0%, #31009c 10%, #000084 25%,#009cff 37%,#00bd00 50%,#fff700 62%,#ff6331 75%,#de0000 90%,transparent 100%);
background-color: #333;
background-size: 10px 125px;
background-repeat : repeat;
height : 100px;
width : 620px;
background-position:center -65px;
transition: background-position 1s;
}
#bkDiv:hover
{
// on Hover the background translates 65px down
background-position:center 0px;
}
#theText
{
font-family:Impact, Charcoal, sans-serif;
font-size:65px;
stroke:#000;
stroke-width:3px;
fill-opacity:0.5;
}
当作为背景的div被鼠标滑过时,CSS3背景将产生过渡动画效果。当鼠标滑出时,背景的原点位置将回到原来的位置上。这里设置过渡动画的时间为1秒钟。
另外,文字有50%的透明度和3像素的描边,使文字看起来更加好看。
遮罩文字背景持续动画效果
先来看一下第二种Disco效果的遮罩文字背景动画效果:
Night CLUB
第二个遮罩文字背景动画效果的HTML代码和第一个例子是一样的:
HTML结构
Welcome to Codicode
CSS样式
body
{
background-color:#fff;
}
#bkDiv
{
// Red dots Css3 pattern
background: linear-gradient(-45deg, #036 30%,transparent 45%,transparent 55%,#036 70%),
linear-gradient(45deg, #036 30%,transparent 45%,transparent 55%,#036 70%);
background-color: #f00;
background-size: 15px 15px;
background-position:0px 0px;
height:150px;
width:550px;
// Animating red dots (infinite loop)
animation: cAnim 1s linear 0s infinite;
}
@keyframes cAnim
{
100% {background-position:15px 0px;}
}
#theText
{
font-family:Impact, Charcoal, sans-serif;
font-size:120px;
stroke:#000;
stroke-width:5px;
fill-opacity:0.1;
stroke-opacity:1;
// Strobe light effect animation
animation: cAnim1 0.5s linear 0s infinite;
}
@keyframes cAnim1
{
100% {fill-opacity:0.9;stroke-opacity:0.5;}
}
在第二个例子中同时执行了两种动画,第一个动画是在背景上移动小圆点,第二个动画是在SVG文字的边框执行闪动效果。
到此,关于“HTML5怎么实现动态文字遮罩背景特效”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注创新互联网站,小编会继续努力为大家带来更多实用的文章!