serverless & front end
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的更多相关文章
- 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 ...
- Front End Developer Questions 前端开发人员问题(二)CSS 后续
问题来源:http://markyun.github.io/2015/Front-end-Developer-Questions/ 31.视差滚动效果,如何给每页做不同的动画?(回到顶部,向下滑动要再 ...
- 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 ...
- [front]有效开展一个前端项目
今天的前端如果没有用到 npm,效率是比较低的:所以要从使用的工具来讲. 1. 一切都依赖于 nodejs: 下载一个 linux 的源码包就可以开始安装了. $ wget https://nodej ...
- 【转】OpenStack和Docker、ServerLess能不能决定云计算胜负吗?
还记得在十多年前,SaaS鼻祖SalesForce喊出的口号『No Software』吗?SalesForce在这个口号声中开创了SaaS行业,并成为当今市值460亿美元的SaaS之王.今天谈谈『No ...
- 【转】Serverless架构
这是来自martinfowler.com的Serverless架构一文的大意翻译. 什么是Serverless? Serverless首先是用于描述我们的应用程序是明显或充分地依赖第三方应用或服 ...
- Queue的push和front操作
#include <queue> #include <cstdlib> using namespace std; int main(){ queue<int> qu ...
- 自己动手做Web框架—MVC+Front Controller
在我前面一篇博文<逃脱Asp.Net MVC框架的枷锁,使用Razor视图引擎>发表之后,很多人关心,脱离了之后怎么办?那么这可以说是它的续篇了. 同时,这也是eLiteWeb开源软件的一 ...
- Activity not started, its current task has been brought to the front
运行错误:Activity not started, its current task has been brought to the front . 原因分析:因为你的模拟器中还有东西在运行,也就是 ...
随机推荐
- redis中的小秘密和持久化小细节
https://www.jianshu.com/p/36c301ac87df 持久化的情况 https://www.cnblogs.com/wdliu/p/9377278.html 集群搭建 主从 ...
- css水平、垂直居中的写法
水平居中 行内元素: text-align: center 块级元素: margin: 0 auto position:absolute +left:50%+ transform:translateX ...
- sql多行合并
例一 SELECT qqo.questionID '题目id', qqo.quesOption '选项' FROM qz_question_option qqo, qz_question qq WHE ...
- flutter--Dart基础语法(一)
一.前言 Flutter 是 Google 开源的 UI 工具包,帮助开发者通过一套代码库高效构建多平台精美应用,Flutter 开源.免费,拥有宽松的开源协议,支持移动.Web.桌面和嵌入式平台. ...
- f5添加多个vlan的方法
1.方法一 方法二: F5不更改配置,核心添加路由 ip route 10.160.101.0 255.255.255.0 10.160.100.10
- 织梦(DedeCms)的安全问题解决办法
网上大家也看到DEDECMS这套程序,虽然便捷草根站长的快速建站,但安全问题也是非常多的.DEDE官方也在很久之前就已经不再对这套系统进行什么版本升级了,最多就是一些补丁修复: 好,废话不多说,下面整 ...
- jvm系列五-java内存模型初览(1)
本文转载自:再有人问你Java内存模型是什么,就把这篇文章发给他. 网上有很多关于Java内存模型的文章,在<深入理解Java虚拟机>和<Java并发编程的艺术>等书中也都有关 ...
- C#脚本引擎RulesEngine
当编写应用程序时,经常性需要花费大量的时间与精力处理业务逻辑,往往业务逻辑的变化需要重构或者增加大量代码,对开发测试人员很不友好. 之前在这篇文章说过,可以使用脚本引擎来将我们需要经常变化的代码进行动 ...
- Kwp2000协议的应用(程序后续篇)
作者:良知犹存 转载授权以及围观:欢迎添加微信:becom_me 总述 接上篇文章,本篇继续对基于PID解析数据,如何依据J1979的标准进行解析数据 先给昨天的文章补上一张故障码对照表,昨天分析了如 ...
- HDU5691 Sitting in Line【状压DP】
HDU5691 Sitting in Line 题意: 给出\(n\)个数字,有些数字的位置固定了,现在要求把所有没固定的数字放在一个位置,使得任意相邻两个位置的数字的相乘的和最大 题解: \(n\) ...