摘要: CSS盒模型(理论转化应用) 题目:谈谈对css盒模型的认识 基本概念:标准模型 和 IE模型 区别:计算高度和宽度的不同(理论) 标准:content IE:计算border 和padding css如何设置两种模型: box-sizing: content-box(默认) box-sizing: 阅读全文
posted @ 2019-11-29 21:31 容忍君 阅读(261) 评论(0) 推荐(0)
摘要: <head> <meta charset="UTF-8"> <title>Title</title> <script src="vue.js"> </script> </head> <body> <section class="app"> <fade :showw="show"> <article 阅读全文
posted @ 2019-11-29 20:34 容忍君 阅读(259) 评论(0) 推荐(0)
摘要: Vue提供我们很多js动画钩子 写在tansition标签内部 入场动画 @before-enter="" 处理函数收到一个参数(e l) el为这个元素 @enter=""处理函数收到二个参数(e l, done)done() 为动画结束 @after-enter=""处理函数收到一个参数(e l 阅读全文
posted @ 2019-11-29 19:45 容忍君 阅读(458) 评论(0) 推荐(0)
摘要: <script src="vue.js"></script> <link rel="stylesheet" href="animate.css"> <style> /*@keyframes bounce-in {*/ /* 0% {*/ /* transform:scale(0);*/ /* }*/ 阅读全文
posted @ 2019-11-29 02:29 容忍君 阅读(2143) 评论(0) 推荐(0)
摘要: transform-origin: center left 60px;可以实现3d转换 阅读全文
posted @ 2019-11-29 02:03 容忍君 阅读(208) 评论(0) 推荐(0)