You can use v-if and v-else to display content based on assertions on your data. Similarly, v-show can be used to render the content, but hide it with ...
分类:
Web程序 时间:
2017-01-24 17:40:28
阅读次数:
275
1 .text-hide{ 2 font:0/0 a; 3 color:transparent; 4 text-shadow:none; 5 background-color:transparent; 6 border:0; 7 } ...
分类:
其他好文 时间:
2017-01-19 14:11:26
阅读次数:
142
JQuery基础知识(1) 对JQuery学习中遇到的小细节进行了整理和总结 1、JQuery hide()和show()方法,分别对选中的元素进行隐藏和显示,语法:hide()和show分别有对应的参数,即hide(speed);隐藏的速度进行了限定。hide(1000)/show(1000); ...
分类:
Web程序 时间:
2017-01-14 18:51:29
阅读次数:
278
一、显示隐藏: 可以使用show()和hide()方法来显示隐藏; 可以使用toggle()方法在show()方法和hide()方法中间切换; 语法: 二、淡入淡出: 方法:fadeIn(); fadeOut(); fadeToggle(); fadeTo() 语法: $(selector).fad ...
分类:
Web程序 时间:
2017-01-12 13:32:02
阅读次数:
228
jQuery效果 隐藏、显示、切换、滑动、淡入淡出、以及动画 1、隐藏与显示(改变:display:none;) hide()——隐藏 show()——显示 toggle()方法:可以使用它来切换hide()与show()方法 eg1:显示 世界那么大 eg2:隐藏 黄河是中国的第二大河流 eg3:... ...
分类:
Web程序 时间:
2017-01-09 22:18:27
阅读次数:
363
建立一个存放日期的文本框 点击文本框弹出一个选择框引用jQuery文件引用bootstrap文件 使用模态框 使用模态框的方法设置点击文本框显示模态框手动打开模态框的方法:$('id').modal('show');关闭:(点击确定后会自动关闭)$('id').modal('hide')填充数据,建 ...
分类:
Web程序 时间:
2017-01-09 18:14:13
阅读次数:
198
http://www.lydsy.com/JudgeOnline/problem.php?id=1941 (题目链接) 题意 给出n个二维平面上的点,求一点使到最远点的距离-最近点的距离最小。 Solution KDtree板子,早就听jump说KDtree都是板子题→_→ 枚举点,求其最远点距离和 ...
分类:
其他好文 时间:
2017-01-07 12:01:22
阅读次数:
227
Hello 大家好,这次给大家带来的是Gear VR4代,首先我得感谢下我们的虎友Hide兄弟友情提供Gear给我们测评,感谢 感谢。之前我录的前哨战也说过,这次Gear VR 4代较3代变化并不是很大,不过之前3代我没有详细评测过~正好借这个机会给大家详细评测下Gear VR,这款目前手机VR盒子 ...
分类:
其他好文 时间:
2017-01-05 22:32:54
阅读次数:
284
1. 禁止右键点击$(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; });}); 2. 隐藏搜索文本框文字Hide when clicked in the search fi ...
分类:
Web程序 时间:
2017-01-05 11:46:06
阅读次数:
246
Python学习 Python学习 On this page... (hide) 1. 基本安装 2. Python文档 2.1?推荐资源站点 2.2 其他参考资料 2.3 代码示例 3. 常用工具 3.1 Python IDE 3.2 内置类库使用参考 3.3 常用第三方类库 3.4 其他东西 3 ...
分类:
编程语言 时间:
2016-12-31 09:04:53
阅读次数:
477