jquery+css实现数字页面加载进度条效果代码

代码语言:html

所属分类:加载滚动

代码描述:jquery+css实现数字页面加载进度条效果代码

代码标签: jquery css 数字 页面 加载 进度条

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Roboto:400,900italic,900,700italic,700,500italic,500,400italic,300italic,300,100italic,100);
	* {
	box-sizing:border-box;
	margin:0
}
h1,p,h2,h3,h4,ul,li,div {
	margin:0;
	padding:0
}
body {
	padding:0;
	width:100vw;
	height:100vh;
	overflow:hidden;
	display:flex;
	font-family:Roboto
}
.loading-page {
	background:#0d0d0d;
	width:100vw;
	height:100vh;
	display:flex;
	justify-content:center;
	align-items:center
}
.loading-page .counter {
	text-align:center
}
.loading-page .counter p {
	font-size:40px;
	font-weight:100;
	color:#f60d54
}
.loading-page .counter h1 {
	color:white;
	font-size:60px;
	margin-top:-10px
}
.loading-page .counter hr {
	background:#f60d54;
	border:0;
	height:1px
}
.loading-page .counter {
	position:relative;
	width:200px
}
.loading-page .counter h1.........完整代码请登录后点击上方下载按钮下载查看

网友评论0