新的开始

简书

简书的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>

我是列表

  • 水果
    • 苹果
    • 香蕉
  • 国家
  • 手机

mou
ace
jquery

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容