12 2019 档案

摘要:最近看南怀谨老师的《易经杂说》,62页说到金钱卦。 两阴一阳,则记为阳爻 两阳一阴,则记为阴爻 三阳,则记为阴爻 三阴,则记为阳爻 顺序是由下到上。 分割线 但是一上网查看,很多人都是相反的记法,不知道这样会不会影响结果呢? 阅读全文
posted @ 2019-12-31 15:10 liuw_flexi 阅读(2417) 评论(0) 推荐(0) 编辑
摘要:八卦每卦由底下算起,初、二、三、四、五、上爻。九二,是第二阳爻。六三是第三爻阴爻。阳爻用九,阴爻用六,其余类推。 比如 阅读全文
posted @ 2019-12-31 09:52 liuw_flexi 阅读(3657) 评论(0) 推荐(0) 编辑
摘要:用神 (不是那么重要)我国传统四柱八字预测术中专用术语,专指用于补救八字不足之处的天干或地支。所谓用神, 就是八字中对于日干来说, 具有补弊救偏或促进助成作用的一种五行. 四柱命局以用神为核心, 用神健全有力与否, 影响人一生的命; 一生补救与否, 影响人一生的运.凡用神之力不足, 四柱中有生助用神 阅读全文
posted @ 2019-12-31 09:29 liuw_flexi 阅读(341) 评论(0) 推荐(0) 编辑
摘要:百度解释: 易学网解释: 阅读全文
posted @ 2019-12-31 09:09 liuw_flexi 阅读(12671) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-12-29 14:41 liuw_flexi 阅读(1648) 评论(0) 推荐(0) 编辑
摘要:有时候在显示文本时,后台传递的数据中是中文输入法中的大括号【】 这种能突出重点,但是如果是在一行文本的开头,会出现无法对齐 此时可以通过YYKit中的YYLabel解决, YYText中有一个属性 firstLineHeadIndent 可以设置一行开头的边距 YYKit : https://git 阅读全文
posted @ 2019-12-29 12:14 liuw_flexi 阅读(581) 评论(0) 推荐(0) 编辑
摘要:打开App,因为数据请求多,网络慢等原因,会先显示一个骨架。 推荐:https://github.com/tigerAndBull/TABAnimated 阅读全文
posted @ 2019-12-29 12:06 liuw_flexi 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-12-25 10:56 liuw_flexi 阅读(355) 评论(0) 推荐(0) 编辑
摘要:配置热更新: 破解: 2019.2/3版本破解文件: https://github.com/nwgdegitHub/IDEA- 解压之后新建一个空项目,把文件拖进去,然后重启IDEA即可 阅读全文
posted @ 2019-12-23 16:45 liuw_flexi 阅读(1594) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/u014527697/article/details/81087139 一个冒号是伪类,两个冒号是伪元素 伪类可以独立于文档的元素来分配样式,且可以分配给任何元素,逻辑上和功能上类类似,但是其是预定义的、不存在于文档树中且表达方式也不同,所以叫伪类。伪元素 阅读全文
posted @ 2019-12-23 15:12 liuw_flexi 阅读(289) 评论(0) 推荐(0) 编辑
摘要:在angular中使用ng-repeat时数组中有重复元素,要用item in items track by $index,不然会报错 <div class="" ng-init="names=[1,2,3,4,5,5]"> <p>循环对象:</p> <ul> <li ng-repeat="x in 阅读全文
posted @ 2019-12-23 14:31 liuw_flexi 阅读(497) 评论(0) 推荐(0) 编辑
摘要:.part5-bg .swiper2 .swiper-pagination2{ bottom: 0.4rem; } /*未选中的小圆点样式*/ .part5-bg .swiper2 .swiper-pagination2 .swiper-pagination-bullet { width: 5px; 阅读全文
posted @ 2019-12-23 09:20 liuw_flexi 阅读(276) 评论(0) 推荐(0) 编辑
摘要:如果想知道当前遍历的下标,也就是数据源中的第几个,可以用$index <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title></title> <style media="screen"> .co 阅读全文
posted @ 2019-12-20 09:46 liuw_flexi 阅读(295) 评论(0) 推荐(0) 编辑
摘要:1. Swiper 的上一页,下一页按钮,不是必需包含在container 中的 2. 定义上一页,下一页按钮的样式,CSS略.... 3. 在初始化Swiper中,定义上一页,下一页按钮 阅读全文
posted @ 2019-12-17 16:36 liuw_flexi 阅读(4836) 评论(1) 推荐(0) 编辑
摘要:效果: <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript" src="./js/jquery-1.12.4.mi 阅读全文
posted @ 2019-12-06 11:57 liuw_flexi 阅读(334) 评论(0) 推荐(0) 编辑
摘要:参考来自 https://www.cnblogs.com/zhoulin1234/p/9587955.html 方法1. 逻辑在后面的中括号里面 ng-class="{true : 'checker disabled',false : 'checker' }[条件表达式,成立就用true对应的类,不 阅读全文
posted @ 2019-12-04 11:17 liuw_flexi 阅读(3171) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示