这个简单啊,就用CSS3的新属性 过渡 transition 就好了,代码如下:
创新互联公司专注于惠来企业网站建设,成都响应式网站建设公司,购物商城网站建设。惠来网站建设公司,为惠来等地区提供建站服务。全流程按需制作网站,专业设计,全程项目跟踪,创新互联公司专业和态度为您提供的服务
!DOCTYPE html
html
head
meta charset="UTF-8"
title文字渐变效果/title
style type="text/css"
div{
width: 100px;
height: 30px;
color: #000;
transition: color 1s;
}
div:hover{
color: yellow;
}
/style
/head
body
div移入试试看/div
/body
/html
基本的思路是这样子的:先通过getElementBy……获取到要修改的标签,比如div,然后设置标签里面的内容即可,比如div.innerHTML = "要修改的内容"
设置html5中字体的大小,首先需要理解是css中的font属性,通过font-size来改变字体的大小,设置的方式,一般都是通过给这个元素的一个id或者是class来设置,具体看下面代码:
html
head
style
#round{
width:400px;
height:200px;
}
#round p{
color:#f00; //设置字体颜色为红色;
}
/style
/head
body
div id="round"
p测试文字/p
/div
/body
/html
方法调用该粒子插件:
particlesJS('particles-js', {
particles: {
color: '#fff',
shape: 'circle',
opacity: 1,
size: 4,
size_random: true,
nb: 150,
line_linked: {
enable_auto: true,
distance: 100,
color: '#fff',
opacity: 1,
width: 1,
condensed_mode: {
enable: false,
rotateX: 600,
使用了particles.js
particles.js可以从github网站下载到最新的源码,网址是
使用方法非常简单
第一步,在html中引入脚本文件 particles.min.js,这个文件在下载的压缩包里可以找到
script src="particles.min.js"/script
第二步,在html中放入一个div容器,设置id为particles-js。这个一般放在所有网页元素的最后面就可以。
div id="particles-js"/div
style type="text/css"
#particles-js {
position: absolute;
top:0;
width:100%;
}
/style
第三步,设置窗口样式
style type="text/css"
#particles-js {
z-index: -1;
position: absolute;
top: 0;
width: 100%;
background: #aaa;
}/style
第四步,脚本生成粒子效果,可以单独放在一个js文件里,也可以放在script标签里。无论如何,这段脚本要出现在div容器之后。
particlesJS("particles-js", { "particles": { "number": { "value": 380, "density": { "enable": true, "value_area": 800
}
}, "color": { "value": "#ffffff"
}, "shape": { "type": "circle", "stroke": { "width": 0, "color": "#000000"
}, "polygon": { "nb_sides": 5
}, "image": { "src": "img/github.svg", "width": 100, "height": 100
}
}, "opacity": { "value": 0.5, "random": false, "anim": { "enable": false, "speed": 1, "opacity_min": 0.1, "sync": false
}
}, "size": { "value": 3, "random": true, "anim": { "enable": false, "speed": 40, "size_min": 0.1, "sync": false
}
}, "line_linked": { "enable": true, "distance": 150, "color": "#ffffff", "opacity": 0.4, "width": 1
}, "move": { "enable": true, "speed": 6, "direction": "none", "random": false, "straight": false, "out_mode": "out", "bounce": false, "attract": { "enable": false, "rotateX": 600, "rotateY": 1200
}
}
}, "interactivity": { "detect_on": "canvas", "events": { "onhover": { "enable": true, "mode": "grab"
}, "onclick": { "enable": true, "mode": "push"
}, "resize": true
}, "modes": { "grab": { "distance": 140, "line_linked": { "opacity": 1
}
}, "bubble": { "distance": 400, "size": 40, "duration": 2, "opacity": 8, "speed": 3
}, "repulse": { "distance": 200, "duration": 0.4
}, "push": { "particles_nb": 4
}, "remove": { "particles_nb": 2
}
}
}, "retina_detect": true});