css3
在切图中占有半壁江山的位置,所谓人靠衣装,马靠鞍,一个网站好不好看除了设计本身,合理的布局以及完美css
布局会让视觉更上一层楼
今天主要分享几个在css3
常用的几个函数,希望看完能在项目中能带来思考和帮助
正文开始...
calc
这是一个计算函数,通常在业务上使用也是非常多,比如一个场景,一个三栏结构,如果让内容铺满整个内容,但是头部与底部固定
有人说这个布局最简单,首先我想到的就是flex
,比如你很快像下面这样写
html
<div class="app">
<header>我是Header</header>
<main>这是内容</main>
<footer>这是footer</footer>
</div>
对应的css如下
css
* {padding: 0;margin:0;}
html,body {height: 100%;}
.app {
display: flex;
flex-direction: column;
height: 100%;
}
.app header {
height: 50px;
line-height: 50px;
background-color: red;
}
.app main {
flex:1;
background-color: green;
}
.app footer {
height: 80px;
line-height: 80px;
background-color: #111;
color: #fff;
}
预览
有人还想到另一种方式,我用grid
实现
css
* {padding: 0;margin:0;}
html,body {height: 100%;}
.app {
height: 100%;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 50px 1fr 80px;
}
.app header {
line-height: 50px;
background-color: red;
}
.app main {
background-color: green;
}
.app footer {
line-height: 80px;
background-color: #111;
color: #fff;
}
张三看到使用grid
,嗯,very good
,小伙子骨骼惊奇,我再授一种方案
我们知道块级元素文档流是从上往下依次排列的,所以我只需要借助这个特性,并且借助calc
就可以实现了
- 单独计算
main
中间内容的高度height: calc(100% - 50px - 80px)
css
* {padding: 0;margin:0;}
html,body {height: 100%;}
.app {
height: 100%;
}
.app header {
height: 50px;
line-height: 50px;
background-color: red;
}
.app main {
background-color: green;
height: calc(100% - 50px - 80px);
}
.app footer {
height: 80px;
line-height: 80px;
background-color: #111;
color: #fff;
}
嗯,非常不错,小弟甘拜下风。
attr
calc
很强大,但今天有一个css3
技能必须让你感受她的强大,那就是传说中的attr
attr
这个函数是一个非常有名的函数,那么她可以做什么呢?
在你的业务中,假设你的一个列表中需要展示不同的图标,那么你就可以借助attr
来巧妙的实现你的需求
html
<head>
<link rel="stylesheet" href="//at.alicdn.com/t/c/font_3844652_3qxwqjxiuyp.css">
<style>
* {padding: 0;margin:0;}
html,body {height: 100%; }
#app {
height: 100%;
}
#app div::before {
font-family: "iconfont";
content: attr(data-uniCode);
}
</style>
</head>
<body>
<div id="app"></div>
</body>
<script>
const app = document.getElementById('app');
const dataSource = [
{
title: "公众号:Web技术学苑",
uniCode: ""
},
{
title: "公众号:前端之巅",
uniCode: ""
},
{
title: "公众号:前端之神",
uniCode: ""
},
{
title: "公众号:itclanCoder",
uniCode: ""
}
];
let htmlTemplate = "";
dataSource.forEach(item => {
htmlTemplate+=`<div data-uniCode=${item.uniCode}>${item.title}</div>`
});
app.innerHTML = htmlTemplate;
</script>
我们发现在源数据中,我们使用了uniCode
,这个uni-code
实际上就是我们的阿里矢量图标库 预览结果 attr
是一个很强大的函数,除了在业务中你使用它来加载unicode
图标,你也可以用来加载一段文字
html
<div id="app">
<div data-text="Web技术学苑"></div>
</div>
对应的css
如下
css
<style>
* {padding: 0;margin:0;}
html,body {height: 100%; }
#app {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#app div::before {
content: attr(data-text);
display: block;
}
</style>
var
这是一个css3
中非常常用的一个函数,通常来讲你想加载css3中的变量就必须屌用var
,比如说
html
<div id="app">
<div class="text">Web技术学苑</div>
</div>
对应的css
如下
css
<style>
* {padding: 0;margin:0;}
html,body {height: 100%; }
:root {
--text-color: red;
}
.text {
color: var(--text-color)
}
</style>
var
函数基本在换肤主题,必然是一个高频函数,因此它是一个很常用的函数
clamp(min,default,max)
min
最小值,default
默认首选值,max
最大值,当default
大于max
,则会取max
,当default
小于min
时,则会取min
,当在min
与max
之间时,则会取默认值。通常我们可以保证一个元素的最大值与最小值,在这范围内,就获取默认值。
html
<div class="text">
<h1 class="title">Web技术学苑</h1>
<p class="content">hello world</p>
</div>
对应的css
css
* {padding: 0;margin:0;}
html,body {height: 100%; font-size:16px }
:root {
--text-color: red;
}
.text {
color: var(--text-color);
width: min(500px, calc(80% + 100px));
background-color: green;
}
.text .title {
font-size: clamp(2rem, 2.5vw, 3rem);
}
.text p.content {
font-size: max(1rem, 2rem);
}
repeat
这个函数,如果你有用过grid
布局,那么一定会有所了解,主要用于在grid-template-rows
与grid-template-columns
html
<div class="text">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
对应css3
css
.text {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.text >div:nth-of-type(2n) {
background-color: red;
}
换成repeat
函数
css
.text {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
url
这是一个平时用到了但是你肯定没注意的css函数,因为你在用背景图片的时候肯定有用到
- 在背景图片上使用
css
.text >div.img {
display: block;
height: 800px;
background: url("https://t7.baidu.com/it/u=4162611394,4275913936&fm=193&f=GIF") no-repeat;
}
- 在伪类元素上使用url
css
.text >div.img2::before {
content: url("https://t7.baidu.com/it/u=4162611394,4275913936&fm=193&f=GIF");
display: block;
}
对应的结构如下
html
<div class="text">
<div class="img"></div>
<div class="img2"></div>
</div>
fix-content
这个函数在grid
布局中会有用到,相当于设置最大阀值,你可以把它当成max-width
或者max-height
html
<div class="text">
<div class="cursor">Web TEACH LEARN ARE YOU READLY </div>
<div class="cursor">HELLO WORLD</div>
<div class="cursor">JAVASCRIPT</div>
</div>
对应的css
如下
css
.text{
display: grid;
grid-template-columns: fit-content(100px) 1fr fit-content(300px);
column-gap: 20px;
height:200px;
}
.text >div:nth-of-type(1) {
background-color: red;
}
.text >div:nth-of-type(2) {
background-color: green;
}
.text >div:nth-of-type(3) {
background-color: blue;
}
tan
这是一个数学中的正切三角函数,通常在我们业务中可能会很少遇到,但是在实现一个复杂的结构时,我们除了用图片替换,可能css也是可以绘制的,比如我们用css绘制一个平行四边形
html
<div class="box-wrap">
<div class="box"></div>
</div>
对应的css
如下
css
* {padding: 0;margin:0;}
html,body {height: 100%; font-size:16px }
:root {
--bg: red;
--defaultBg: #e5e5e5;
--width: 400;
--height: 200;
--angle: 30deg;
}
#app {
overflow: hidden;
}
.box-wrap {
width: 100%;
height: calc(1px * var(--height));
display: flex;
justify-content: center;
position: relative;
}
.box {
width: calc(1px * var(--width));
}
.box:nth-of-type(1):before{
content: "";
display: block;
width: 100%;
height: calc(1px * var(--height));
transform: skewX(calc(var(--angle) * 1));
background-color: var(--bg);
border-left: 1px solid #e5e5e5;
}
counter
这是一个计数函数,在一些特殊的列表中,我们可以巧妙的用这个函数
html
<div id="app">
<ul>
<li>hello</li>
<li>world</li>
<li>JAVA</li>
<li>JAVASCRIPT</li>
<li>PYTHON</li>
</ul>
</div>
对应的css
css
#app {
overflow: hidden;
padding: 50px;
}
#app ul {
counter-reset: count;
}
#app ul li {
counter-increment: count 1
}
#app ul li::marker {
content: "【"counter(count)"】"
}
总结
- 我们主要介绍了在
css3
常用的高频函数,比如calc
,var
,attr
,repeat
,url
等,通常来讲有些函数可能用的并不是会那么多,比如counter
、tan
、sin
函数等 - 另外还有不少不太常用的css3函数,具体可参考Function
- 本文示例code example