噪点变换艺术效果
代码语言:html
所属分类:粒子
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url('https://fonts.googleapis.com/css?family=Laila|Lobster');
html, body {
overflow: hidden;
padding: 0px;
margin: 0px;
background: #000;
}
#canvas {
position: absolute;
left: 50%;
top: 50%;
height: 300px;
width: 300px;
transform: translate(-50%, -50%);
box-shadow: 0px 0px 5px rgba(255,255,255,0.3);
}
.collection,
.name {
position: absolute;
color: #fff;
padding: 5px;
text-align: left;
font-size: 24px;
font-family: 'Laila', serif;
transition: 200ms ease-in-out;
text-shadow: 2px 0px 4px #000;
}
.collection {
font-size: 18px !important;
top: 10px;
left: 10px;
}
.collection > span {
font-size: 24px;
}
.name {
top: 5px;
left: 5px;
font-family: 'Lobster', serif;
}
.collection > span > a {
font-family: 'Lobster', serif;
position: relative;
transition: all 200ms ease-in-out;
}
.textHover:active,
.textHover:link,
.textHover:visited,
.textHover:hover {
text-decoration: none;
color: #fff;
}
.textHover:before,
.textHover:after {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0