zhilizhili-ui 2016始动 开始做个样例站吧 (一)_html/css_WEB-ITnose
zhilizhili-ui
自己从有这个想法到现在zhilizhili-ui发展到1.24版本已经快一年了 这一年里自己收集和编写了sassstd scss-zhilizhili-mei 这些一直在用sass库 sass可能不再是很新鲜的样式预编译语言了 的确受到一些压力 不过自己也在积极改进样式构建的流程 自己加入了postcss支持 2016年 打算开始和css4无缝对接
写个样例站吧
我选用前端框架angular2 后端laravel
本文不会特地放出demo
要想找到源码 请到我的github项目上
tde.blade.php
Mobile Component Loading...
说到angular2 大家可能对她还不是很感兴趣 但是在浏览器依旧要面对ie的时代 这个时代可能还要5年 angular2的确是给了一个大型应用的解决方案 的确 还是脏检查 不过使用的是worker zone.js提供了支持
2014年的ngconf大会 angular团队介绍了zone.js zone 就像java thread ok 好吧用进程模拟线程 也是可以的 dart有zones
zone is a execution context
通常我们写异步js
a();setTimeout(b, 0);setTimeout(c, 0); d();
她的执行顺序
adbc
如果我们改改
start();a();setTimeout(b, 0);setTimeout(c, 0); d();stop();
b c是不会被影响的
zone希望去使代码可预测
zone.run(function() { a(); setTimeout(b, 0); setTimeout(c, 0); d(); ));function onZoneEnter() {}function onZoneLeave() {}
tde.ts
import {AppComponent} from './tde/app.component';import {bootstrap} from 'angular2/platform/browser';import {provide} from 'angular2/core';import { APP_BASE_HREF, ROUTER_PROVIDERS} from 'angular2/router';bootstrap(AppComponent, [ ROUTER_PROVIDERS, provide(APP_BASE_HREF, {useValue: '/wex/mtc'})]);
zone可以捕捉甚至异步操作 用过angular2的都知道她的debug非常好 就是使用的是zone.jsangular之前的$scope.apply没有了 没了 不要担心了
rxjs
响应式编程 rxjava很牛对吧 这个也不错
RxJS 是使用可观察序列和 LINQ 风格查询操作符来编写异步和基于事件程序的类库。 使用 RxJS, 开发者用 Observables 来 表示 异步数据流,通过 LINQ 操作符来 查询 异步数据量,并使用 Schedules 来参数化异步数据流中的并发。 简单地讲, Rx = Observables + LINQ + Schedulers。
在 RxJS 中,你可以表述多个异步数据流,并且使用 Observer 对象订阅事件流。 Observable 对象会在事件发生时通知已订阅的 Observer。
因为 Observable 序列是数据流,你可以使用由 Observable 扩展方法实现的标准查询操作符 来查询它们。这样你可以通过这些查询操作符很容易地在多个事件上进行过滤、投射、聚合、 组合和执行基于时间的操作。除此之外还有很多其他反应式流特定的操作符使得可以书写强大的查询。 取消、异常和同步都可以通过由 Rx 提供的扩展方法优雅地处理。
由 Rx 实现的 Push 模型表现为 Observable/Observer 的观察者模式。 Observable 会自动在任何状态改变时通知所有的 Observers。 要通过订阅注册一个关注,你要使用 Observable 上的 subscribe 方法, 它接收一个 Observer 并返回一个 Disposable 对象。 它让你能够跟踪你的订阅并能够取消该订阅。 本质上你可以将可观察序列看做一个常规的集合。
开始最初的页面设计
大概就是desktop端需要一个框架样的东西 pad端 mobile端 就隐藏两边边栏
未来组团开发的时候 很多情况样式并非一个人开发 可能架构组会将页面元素定下来 register-hook 然后业务实现组 要通过 use-hook 来开发 这样上层设计改变 代码也可以有效维护
tde.scss首先我们需要一些生成media query的sass方法 这样不错
@import "../../../../../node_modules/sass-mediaqueries/media-queries";@function mq($args...) { $media-type: 'only screen'; $media-type-key: 'media-type'; $args: keywords($args); $expr: ''; @if map-has-key($args, $media-type-key) { $media-type: map-get($args, $media-type-key); $args: map-remove($args, $media-type-key); } @each $key, $value in $args { @if $value { $expr: "#{$expr} and (#{$key}: #{$value})"; } } @return #{$media-type} #{$expr};}@function screen($min, $max, $orientation: false) { @return mq($min-width: $min, $max-width: $max, $orientation: $orientation);}
我们需要一些全局变量保存
$custom-deivces: ( "mobile": 320, "pad": 768, "desktop": 1280,) !global;$custom-deivces-media: () !global;$custom-deivces-hook: () !global;
这样的话 我们需要一个初始化sass实现的方法
@mixin initlize-media-hooks($custom-deivces) { $custom-deivces-indicators: map-keys($custom-deivces); $custom-deivces-indicatorslength: length($custom-deivces-indicators); @for $i from 1 through $custom-deivces-indicatorslength { $currentDeviceIndicator: nth($custom-deivces-indicators, $i); $currentDevice: map-deep-get($custom-deivces, $currentDeviceIndicator); $currentMedia: $currentDevice + 0px; $nextDeviceIndicator: if($i每个页面可能有不同兼容情况 然后只需要自定义设备 在初始化一下
$custom-deivces: map-extend($customo-device, (...));@include initlize-media-hooks($custom-deivces);然后我们就可以使用自己定义好的设备查询
@include use-media-hook("pad") { @include use-hook(".main-inner .layout__item.layout__item--prefix") { position: absolute; left: 0; top: 0; } @include use-hook(".main-inner .layout__item.layout__item--suffix") { position: absolute; right: 0; top: 0; }}@include use-media-hook("mobile") { @include use-hook(".main-inner .layout__item.layout__item--prefix") { position: absolute; left: 0; top: 0; opacity: 0; z-index: -1; } @include use-hook(".main-inner .layout__item.layout__item--suffix") { position: absolute; right: 0; top: 0; opacity: 0; z-index: -1; }}然后一个操作视频
happy fte
下一篇: 多个div垂直居中横向排列(附代码)