<!doctype html><html><head><meta charset="utf-8"><title>制作图片轮显效果</title></head><style type="text/css"> img{border: 0px;} .imgsBox{overflow: hidden; wi ...
分类:
Web程序 时间:
2019-12-24 15:38:48
阅读次数:
119
首先<router-view/>里定义了跳转规则 再去router.js,默认路径“/”,所以跳转到名为Login的组件里 routes: [ { path: '/', name: 'Login', component: Login, hidden: true } ] 在Vue项目中元素名字一般叫r ...
分类:
其他好文 时间:
2019-12-23 22:27:45
阅读次数:
83
第一种(单行文本) white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 要使用 white-space: nowrap; 尽量别使用<nobr></nobr>标签 可能会导致不兼容的情况发生 第二种(多行文本) text-o ...
分类:
其他好文 时间:
2019-12-23 17:00:55
阅读次数:
89
案例:手风琴 封装好的动画函数在common.js里面 //function getStyle(element, attr) {...} //function animate(element, json, fn) {...} 手风琴设置的是背景图吗,backgroudImage="url(image ...
分类:
Web程序 时间:
2019-12-23 00:41:27
阅读次数:
132
分页的分类 分页的实现分为真分页和假分页两种。 1.真分页(物理分页): 实现原理: SELECT * FROM xxx [WHERE...] LIMIT ?, 10;第一个参数是开始数据的索引位置10是要查询多少条数据,即每页显示的条数 优点: 不会造成内存溢出 缺点: 翻页的速度比较慢 2.假分 ...
分类:
编程语言 时间:
2019-12-22 22:54:15
阅读次数:
122
Find the hidden section of the photo galery. 找到相册的隐藏部分。 直接能够目录遍历: 虽然galerie禁止访问,但是密码就在里面 直接爆破或者爬虫吧 http://challenge01.root-me.org/web-serveur/ch15/gal ...
分类:
其他好文 时间:
2019-12-21 11:48:57
阅读次数:
95
https://en.cppreference.com/w/cpp/language/using_declaration 在[Inheriting constructors]这一节. 其实叫做"基类的构造函数前置"比较好. 像mystring继承自string类,但仍然是提供字符串功能.new的时候 ...
分类:
编程语言 时间:
2019-12-21 10:12:17
阅读次数:
99
原文:WPf 带滚动条WrapPanel 自动换行 和控件右键菜单 技能点包括 WPf 样式的引用 数据的验证和绑定 比较适合初学者 前台: ... ...
分类:
移动开发 时间:
2019-12-20 23:54:57
阅读次数:
492
@mixin text-overflow(){ text-overflow:ellipsis; overflow: hidden; } @mixin flexCtn(){ display: -webkit-box; display: flex; display: -moz-box; display: ...
分类:
Web程序 时间:
2019-12-20 15:30:52
阅读次数:
291