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. Index-Only Scans and Covering Indexes

    小结: 1.覆盖索引 回表 2. All indexes in PostgreSQL are secondary indexes, meaning that each index is stored ...

  2. loj10001种树

    好久不写博客了,发现不好找做过和题!还得接着写啊! ------------------------------------------------------------------ 题目描述 某条 ...

  3. Spring听课笔记(tg)AOP

    好文:https://blog.csdn.net/javazejian/article/details/56267036 通过一个实例来理解 1.  需求:实现算术计算器,可以加减乘除,同时记录日志 ...

  4. Android第一代壳demo编写

    Android第一代壳Demo编写 前言 这篇文章是对姜维大佬的这篇文章[Android中的Apk的加固(加壳)原理解析和实现]的补充.建议先看一编姜维大佬的这篇文章再看. 姜维大佬写那篇文章的时间距 ...

  5. (一)Spring Boot 常用注解

    文章目录 一.注解(annotations)列表 二.注解(annotations)详解 三.JPA注解 四.SpringMVC相关注解 五.全局异常处理 @ExceptionHandler(Exce ...

  6. JavaScript——事件

    事件:是由访问Web页面的用户引起一系列操作. 事件的作用:用于浏览器和用户的交互 以下代码为相关试验代码: HTML事件: <script type="text/javascript ...

  7. MySQL数据库操作生成UUID

    问题描述: 通过数据库操作,生成无横线的uuid,同时插入至数据库之中. 因为我要给项目做一些测试数据,项目的主键为32位无'-'的uuid,然后在数据库中,通过数据库操作,然后插入一些测试数据. 生 ...

  8. java HashMap and HashMultimap 区别

    http://stackoverflow.com/questions/19222029/what-is-difference-between-hashmap-and-hashmultimap The ...

  9. 操作系统中的描述符和GDT

    在操作系统中,全局描述符是什么?GDT又是什么?在进入保护模式之前,准备好GDT和GDT中的描述符是必须的吗?用汇编代码怎么创建描述符?本文解答上面几个问题. 在实模式下,CPU是16位的,意思是,寄 ...

  10. D - Seek the Name, Seek the Fame

    The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked the l ...