serverless & front end

Cloud Functions or Functions as a Service (FaaS)

https://serverless.css-tricks.com/

https://serverless.css-tricks.com/about/

https://github.com/CSS-Tricks/serverless

Cloud Functions

Functions as a Service

FaaS

https://serverless.css-tricks.com/services/major

https://serverless.css-tricks.com/resources/

https://serverless.css-tricks.com/ideas/

What is Serverless all about?

https://cheesecakelabs.com/blog/what-is-serverless-all-about/

serverless & node.js

https://hackernoon.com/a-crash-course-on-serverless-with-node-js-632b37d58b44

https://blog.codepen.io/2018/01/15/build-serverless-blog-codepen/

https://github.com/CodePen/serverless-demos

https://codepen.io/team/codepen/project/editor/DWQRjB


flex-flow

https://css-tricks.com/almanac/properties/f/flex-flow/


/* flex-flow: <‘flex-direction’> || <‘flex-wrap’> */ .flex-container {
flex-flow: row wrap;
}

demo



.chat-person-field-label-box-auto{
display: flex;
/* flex-direction: row;
flex-wrap: wrap; */
flex-flow: row wrap;
justify-content: center;
align-items: center;
max-height: auto;
overflow-y: hidden;
} .chat-person-field-label{
flex: 1 1 auto;
width: 2rem;
min-width: 2rem;
line-height: 0.6rem;
height: 0.6rem;
font-size: 0.24rem;
background:rgba(0,144,255, 0.1);
border-radius: 0.08rem;
font-weight:400;
color:rgba(61,61,61,1);
margin: 0.15rem;
text-align: center;
vertical-align: middle;
} .chat-person-field-label-more,
.chat-person-field-label-less {
flex: 1 1 auto;
width: 100%;
height: 0.24rem;
line-height: 0.24rem;
font-size: 0.24rem;
color:rgba(26,144,255,1);
margin: 0.18rem auto 0.20rem;
text-align: center;
vertical-align: middle;
cursor: pointer;
} .chat-person-field-label-more-text,
.chat-person-field-label-less-text{
position: relative;
display: inline-block;
} .chat-person-field-label-more-text::after{
display: table;
content: "";
background: url("../../images//chatroom/show-more.png") no-repeat center center;
background-size: cover;
width: 0.16rem;
height: 0.1rem;
position: absolute;
top: 0.05rem;
right: -0.2rem;
}
.chat-person-field-label-less-text::after{
display: table;
content: "";
background: url("../../images//chatroom/show-less.png") no-repeat center center;
background-size: cover;
width: 0.16rem;
height: 0.1rem;
position: absolute;
top: 0.05rem;
right: -0.2rem;
}

flex-wrap

https://css-tricks.com/almanac/properties/f/flex-wrap/

flex-direction

https://css-tricks.com/almanac/properties/f/flex-direction/


xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


serverless & front end的更多相关文章

  1. Java Web项目报错java.lang.NullPointerException at org.apache.jsp.front.index_jsp._jspInit(index_jsp.java:30)

    环境:myeclipse+tomcat6+jdk6 今天搭建了一个Java Web项目,访问index.jsp时报如下错误: 严重: Servlet.service() for servlet jsp ...

  2. Front End Developer Questions 前端开发人员问题(二)CSS 后续

    问题来源:http://markyun.github.io/2015/Front-end-Developer-Questions/ 31.视差滚动效果,如何给每页做不同的动画?(回到顶部,向下滑动要再 ...

  3. I finally made sense of front end build tools. You can, too.

    来源于:https://medium.freecodecamp.com/making-sense-of-front-end-build-tools-3a1b3a87043b#.nvnd2vsd8   ...

  4. [front]有效开展一个前端项目

    今天的前端如果没有用到 npm,效率是比较低的:所以要从使用的工具来讲. 1. 一切都依赖于 nodejs: 下载一个 linux 的源码包就可以开始安装了. $ wget https://nodej ...

  5. 【转】OpenStack和Docker、ServerLess能不能决定云计算胜负吗?

    还记得在十多年前,SaaS鼻祖SalesForce喊出的口号『No Software』吗?SalesForce在这个口号声中开创了SaaS行业,并成为当今市值460亿美元的SaaS之王.今天谈谈『No ...

  6. 【转】Serverless架构

    这是来自martinfowler.com的Serverless架构一文的大意翻译. 什么是Serverless?    Serverless首先是用于描述我们的应用程序是明显或充分地依赖第三方应用或服 ...

  7. Queue的push和front操作

    #include <queue> #include <cstdlib> using namespace std; int main(){ queue<int> qu ...

  8. 自己动手做Web框架—MVC+Front Controller

    在我前面一篇博文<逃脱Asp.Net MVC框架的枷锁,使用Razor视图引擎>发表之后,很多人关心,脱离了之后怎么办?那么这可以说是它的续篇了. 同时,这也是eLiteWeb开源软件的一 ...

  9. Activity not started, its current task has been brought to the front

    运行错误:Activity not started, its current task has been brought to the front . 原因分析:因为你的模拟器中还有东西在运行,也就是 ...

随机推荐

  1. (007)每日SQL学习:将字符和数字分离

    with aa as ( select 'sad10' as data from dual union all select 'datf20' as data from dual union all ...

  2. 【网络安全】IOC概念浅析

    OpenIOC(Open Indicator of Compromise,开放威胁指标) MANDIANT 公司发布的情报共享规范,是开源.灵活的框架.OpenIOC是一个记录.定义以及共享威胁情报的 ...

  3. 题解 P1248 【加工生产调度】

    题目 某工厂收到了 n 个产品的订单,这 n 个产品分别在 A.B 两个车间加工,并且必须先在 A 车间加工后才可以到 B 车间加工. 某个产品 i 在 A.B 两车间加工的时间分别为 Ai,Bi 怎 ...

  4. Redis 实战 —— 12. 降低内存占用

    简介 降低 Redis 的内存占用有助于减少创建快照和加载快照所需的时间.提升载入 AOF 文件和重写 AOF 文件时的效率.缩短从服务器进行同步所需的时间(快照. AOF 文件重写在 持久化选项 中 ...

  5. Spark踩坑填坑-聚合函数-序列化异常

    Spark踩坑填坑-聚合函数-序列化异常 一.Spark聚合函数特殊场景 二.spark sql group by 三.Spark Caused by: java.io.NotSerializable ...

  6. string知识

    因为历史原因以及为了与C语言兼容,字符串字面值与标准库string类型不是同一种类型.这一点很容易引起混乱,编程时一定要注意区分字符串字面值和string数据类型的使用,这很重要. 额~~~C字符串是 ...

  7. Java使用反射的通用数组复制方法

    Java通用数组复制方法 在Arrays工具类中,提供了一个copyOf(T[] original, int newLength)方法,用于复制任意类型的对象数组,但是由于泛型不能作用于基本类型,所以 ...

  8. redis分布式锁的这些坑,我怀疑你是假的开发

    摘要:用锁遇到过哪些问题? 一.白话分布式 什么是分布式,用最简单的话来说,就是为了较低单个服务器的压力,将功能分布在不同的机器上面:就比如: 本来一个程序员可以完成一个项目:需求->设计-&g ...

  9. 深入理解Js中的this

    深入理解Js中的this JavaScript作用域为静态作用域static scope,但是在Js中的this却是一个例外,this的指向问题就类似于动态作用域,其并不关心函数和作用域是如何声明以及 ...

  10. SpringMVC学习笔记2

    一.日期赋值 目标:在springMVC中日期赋值兼容性更广泛 不能直接处理,必须使用转换器1.定义转换器,实现接口Converter<From,To> package com.zy.co ...