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 . 原因分析:因为你的模拟器中还有东西在运行,也就是 ...
随机推荐
- 玩遍博客网站,我整理了 Hexo 及其流行的风格主题
搭建博客网站是个人进入互联网世界的最常见方式之一.伴随着网站技术的发展,如何搭建博客网站已经变得非常容易了.当然,你可以选择诸如 新浪博客.CSDN.博客园 之类的大型网站,快速创建依赖于大平台的个人 ...
- Spark Dataset DataFrame空值null,NaN判断和处理
Spark Dataset DataFrame空值null,NaN判断和处理 import org.apache.spark.sql.SparkSession import org.apache.sp ...
- Java 8新特性(Lambda,Stream API)
由于最近总监要求学习Java 8的一些知识,就去网上找了 一套教程来学习学习,将学习结果做一个小的总结记录,方便以后使用: 1.Java 8的优点 2.Lambda表达式优点 2.1Lambda实例 ...
- java架构《并发线程基础一》
1.实现线程常见的两种的方式 : 1:继承extends Thread 2:实现new Runnable 实现其run方法 2.线程安全 结论: 当多个线程访问某一个类(对象或方法)时,这个对象 ...
- Linux lsblk和df命令区别
lsblk 查看的是block device,也就是逻辑磁盘大小. df查看的是file system, 也就是文件系统层的磁盘大小
- 2019牛客暑期多校训练营(第七场)H.Pair(数位dp)
题意:给你三个数A,B,C 现在要你找到满足 A and B >C 或者 A 异或 B < C 的对数. 思路:我们可以走对立面 把既满足 A and B <= C 也满足 A 异 ...
- 【noi 2.6_90】滑雪(DP)
题意:输出最长下降路径的长度. 解法:f[i][j]表示结尾于(i,j)的最长的长度.由于无法确定4个方位已修改到最佳,所以用递归实现. 1 #include<cstdio> 2 #inc ...
- 【2020杭电多校】 Lead of Wisdom、The Oculus
题目链接:Lead of Wisdom 题意:有n个物品,这些物品有k种类型.每种物品有对应的类型ti,其他值ai,bi,ci,di 你可以选择一些物品,但是这些物品要保证它们任意两者之间类型不能相同 ...
- hdu5534 Partial Tree
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total Submissi ...
- Codeforces Round #672 (Div. 2 B. Rock and Lever (位运算)
题意:给你一组数,求有多少对\((i,j)\),使得\(a_{i}\)&\(a_{j}\ge a_{i}\ xor\ a_{j}\). 题解:对于任意两个数的二进制来说,他们的最高位要么相同要 ...