码迷,mamicode.com
首页 > 其他好文 > 详细

01_垂直居中body中的应用

时间:2019-05-17 16:46:24      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:定时器   type   script   rip   cloc   body   bsp   inter   lang   

1: 应用场景 在body中书写一个代码块, 使其相对于body垂直居中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>js定时器setTimeout_setInterval的用法</title>
    <style type="text/css">
    	body{
    		position: relative;
    		margin: 0;
    		padding: 0;
    		width: 100vw;
    		height: 100vh;
    	}
    	#clock{
    		width: 300px;
    		height: 100px;
    		margin: auto;
    		position: absolute;
    		top: 0; bottom: 0;
    		left: 0; right: 0;
    		background: cyan;
    	}
    </style>
</head>
<body>
	<!-- 需求: 利用setInterval定时器写一个走动的时钟 -->
	<div id="clock">
		111
	</div>
	
    <script>
    	window.onload = function(){
    		
    	}

    </script>
    
</body>
</html>

2: 这样就OK啦 !

 

01_垂直居中body中的应用

标签:定时器   type   script   rip   cloc   body   bsp   inter   lang   

原文地址:https://www.cnblogs.com/heshaoxu/p/10882031.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!