Angular-UI-Router 学习笔记 Posted on 2014-10-15 | In Front-End | 为什么用 Route AJAX 请求不会留下 History 记录 用户无法直接通过 URL 进入应用中的指定页面(保存书签、链接分享给朋友) AJAX 对 SEO 是个灾难 Read more »
Anchor 平滑滚动 Posted on 2014-09-24 | In Front-End | 原代码出自 CSS-Tricks1234567891011121314$(function () { $('a[href*=#]:not([herf=#])').click(function(event) { if(location..pathname.replace(/^\//) == this.pathname.replace(/^\//) && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); if (target.length) { $('html, body').animate({ scrollTop: target.offset().top }, 1000); return false; } } });})
MOTO X 2nd Gen. 出了! Posted on 2014-09-05 | In NoneTech | MOTO X 2nd Gen. 出了!!!啊啊啊中毒!!!来自 the Verge 的上手视频
AngularJS phonecat 完成 Posted on 2014-08-25 | In Front-End | 按照 AngularJS 官方教程 把 phonecat App 完成了,但从 step 11 就不知道各个步骤为什么要这么做了(:3」∠),主要是 Angular Animate。
AngularJS 制作 F1 车手积分 App Posted on 2014-08-22 | In Front-End | AngularJS 制作 F1 车手积分 App12345678910111213141516171819202122232425262728293031323334353637383940414243<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <title>F1 Feed App</title> </head> <body ng-app="F1FeedApp" ng-controller="driverController"> <table> <thead style="position: fixed; background-color: white"> <tr> <th colspan="4">Drivers Championship Standings</th> </tr> <tr> <th colspan="4">Search: <input type="text" ng-model="name"></th> </tr> </thead> <tbody> <tr><td colspan="4">&nbsp;</td></tr> <tr><td colspan="4">&nbsp;</td></tr> <tr ng-repeat="driver in driversList | filter:name"> <td>{ { $index + 1 }}</td> <td> { {driver.Driver.givenName + " " + driver.Driver.familyName}} </td> <td>{ {driver.Constructors[0].name}}</td> <td>{ {driver.points}}</td> </tr> </tbody> </table> </body> <script src="bower_components/jquery/dist/jquery.min.js"></script> <script src="bower_components/angular/angular.min.js"></script> <script> var app = angular.module("F1FeedApp", []); app.controller("driverController", function($scope, $http){ $http.get("http://ergast.com/api/f1/2013/driverStandings.json") .success(function(response) { $scope.driversList = response.MRData.StandingsTable.StandingsLists[0].DriverStandings; }); }); </script></body></html>
前端面试试题 Posted on 2014-08-21 | In Front-End | 以下是我在 Github 上看到的一些前端面试试题,发出来提醒自己。2014年最新前端开发面试题 (题目列表页)目录 前言 HTML 部分 CSS 部分 Read more »