Web前端
NNode
Your will, My hands.
展开
-
ionic & AngularJS 传递url类型的参数
ionic用的是ui-router,如果参数是一个路径,直接使用:url: "/newslist/:url",就会出现问题,比如当传递的时候:href="#/tab/{{u}}",假如u的值为http://isunday.top,那么拼接起来就会变成:#/tab/http://isunday.top,造成错误。so,定义path类型的路由应该如下:url: "/newslist/{path:.*}"原创 2016-03-21 11:26:02 · 2115 阅读 · 0 评论 -
JS滚动加载数据的方法
$(window).scroll(function () { var scrollTop = $(this).scrollTop(); var scrollHeight = $(document).height(); var windowHeight = $(this).height(); if (scrollTop + windowHeight == scrollH原创 2016-06-11 10:54:31 · 939 阅读 · 0 评论 -
Web版 扫雷 JS实现
这几天中毒了,无比迷恋扫雷游戏(摔!明明是机房机器渣到只能玩扫雷),于是在上网络互联与路由课的时候,写了个Web版的扫雷游戏,起码能玩了,嘿嘿,晚上又增加了一些有趣的东东,还有个彩蛋。DEMO:http://imgbattle.cn/mine/其中雷区扩展的时候,用的BFS算法。考虑到所有节点都必须被储存,因此BFS的空间复杂度为 O(|V| + |E|),其中 |V| 是节点的数目,而 |E| 是原创 2016-05-26 11:03:55 · 6150 阅读 · 8 评论 -
常用CSS样式整理
CSS文件中引用CSS文件@import url("base.css");角标实现div{ vertical-align:super}小三角实现.triangle{ display:block; width:0; height:0; border-width:0 8px 8px; border-style:solid; border-color:transparent t原创 2017-01-26 10:35:17 · 915 阅读 · 0 评论 -
CSS3弹性布局文字超出省略号代替不起作用解决方法
<!DOCTYPE html><html><head> <meta http-equiv="Content-type" content="text/html;charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalab原创 2017-01-26 10:31:27 · 6897 阅读 · 1 评论 -
可以拖动的DIV
<!DOCTYPE html><html lang="zh"><head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Movable Div</title> <script src="./jquery.min.js" type="text/javascript"></s原创 2016-09-24 20:19:03 · 453 阅读 · 0 评论 -
CSS3简单整理
背景background-clip 规定背景的绘制区域。 background-origin 规定背景图片的定位区域。字体@font-face 规则 在 CSS3 之前,web 设计师必须使用已在用户计算机上安装好的字体。 通过 CSS3,web 设计师可以使用他们喜欢的任意字体。 当您您找到或购买到希望使用的字体时,可将该字体文件存放到 web 服务器上,它会在需要时被自动下载到用户的计算原创 2016-03-21 11:31:00 · 465 阅读 · 0 评论 -
JS&CSS3 侧边能显示隐藏的布局
Demo: side-layout原创 2016-03-21 11:30:28 · 1136 阅读 · 0 评论 -
ionic input can't run on ios
I am experiencing the same issue and I am getting frustrated since I have been trying different approaches to workaround this issue and I don’t seem to find a suitable solution. I have used several css原创 2016-03-21 11:29:32 · 922 阅读 · 0 评论 -
CSS3 特效按钮 + 原生JS递归实现fadeout
Demo原创 2016-03-21 11:28:35 · 594 阅读 · 0 评论 -
ionic 里使用 iframe 可能遇到的问题
无法访问外部url的问题–两个步骤解决:1.iframe的src属性用ng-src属性替代,并指明绑定对象:ng-src="{{targetUrl}}"2.在controller里,调用$sce: $scope.targetUrl = $sce.trustAsResourceUrl(url)高度无法最大化的问题–两个步骤:1.ion-content 属性里添加 scroll="true" overf原创 2016-03-21 11:25:01 · 5640 阅读 · 0 评论 -
hexo图片快捷插入
博客使用hexo搭建,托管于Github,vim编辑文章,生成发布,但是图片插入一直是个头疼的问题,有各种依赖于微博图床的插件/app,可以方便发布,像是iPic,但是好担心微博啥时候不干了,图片存多了,总有一种不安全感,也没法批量管理。于是写了一个shell,本来想写vim插件的,看了看略麻烦。(这种方式shell也不是很麻烦嘛 hahhh) hexoimg () { CURREN原创 2018-01-30 14:36:33 · 704 阅读 · 0 评论