心灵沉淀第一天

4次阅读

共计 498 个字符,预计需要花费 2 分钟才能阅读完成。

心灵沉淀 - 第一天

任务完成情况

  • 英语阅读(JK 罗琳演讲 2 篇)
  • 信号实验与信号知识点归纳总结(8:00-12:00)
  • css 揭秘第一章

    • 浏览器对 css 各版本的兼容性
    • css 代码的编码规范,避免重复代码,写可维护性高的代码
    • css 的第一个变量 currentColor
    • css 的继承性,inherit 属性值
  • JS 高级程序设计前五章,前面基础知识看完,统一整理出来
  • 英语六级阅读

评分:35/50 分

每天总结:

1. 了解了很多以前不知道的 css 知识,正式打开了前端的大门
2.JS 学习正在如火如荼的进行中,继续加油
3.css 是个很奇妙的东西,今天学了几个 css 属性 [cubic-bezier(n,n,n,n);transition;transform;]

  • 对话框小箭头的实现
.callout::before {
        content: "";
        position: absolute;
        top: -.4em;
        left: 1em;
        padding: .35em;
        background: inherit;
        border: inherit;
        border-right: 0;
        border-bottom: 0;
        transform: rotate(45deg);
        }

2019.5.12 空明

正文完
 0