![](https://img.haomeiwen.com/i9990182/3dd7e92f37283543.png)
简书的UI设计风格我一直很喜欢,逛了好久今天终于注册了。迫不及待想写一些东西体验一下。
标题1
我是一大段简介
改不了程序员的老毛病, 写段代码试试.
<!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>Document</title>
<style>
*{
margin: 0;
padding: 0;
}
.heart{
font-size: 32px;
color: #F0F;
height: 500px;
text-align: center;
line-height: 500px;
}
</style>
</head>
<body>
<div class="heart">❤</div>
<script>
var heart = document.querySelector('.heart');
var size = 32;
setInterval(function(){
size ++;
if(size == 160){
size = 32;
}
heart.style.fontSize = size + 'px';
},10);
</script>
</body>
</html>
我是列表
- 水果
苹果
- 香蕉
- 国家
- 手机
网友评论