仅仅用CSS就可以实现这些?
原文链接为CSS can do that?,由Ananya Neogi在Dev社区所发表,本人进行翻译转载。
本文列举了一些仅用CSS就可以实现的非常棒的效果。
注意:本文中列出的一些属性可能并不支持某些浏览器。这种情况下,我们可以使用@supports语法来检查浏览器的支持情况,并使用相应的自定义样式来替代这些属性。为了保证效果,请使用chrome浏览器查看以下示例🙂。
1. box-decoration-break
这个属性定义了一个元素片段在跨行、跨列或跨页时候的样式渲染表现。
效果
在线预览:【传送门】
代码
- html
<h1><span>SHE SELLS SEASHELLS ON THE SEASHORE.
</span></h1>
- css
h1 {
max-width: 300px;
font-family: Verdana;
}
h1 span {
background: blue;
color: white;
padding: 12px 12px;
line-height: 1.4;
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}
/* Just for centering */
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
2. attr()
表达式attr()
用来获取选择到的元素的任一CSS属性值。
效果
在线预览:【传送门】
代码
- html
<div> On saturdays, we
<span aria-label="art - By art we mean painting and drawing">art!</span>
</div>
- css
span {
position: relative;
color: blue;
cursor: pointer;
}
span:hover:before {
opacity: 1;
}
span:before {
content: attr(aria-label);
opacity: 0;
position: absolute;
top: 30px;
right: -90px;
font-size: 14px;
width: 100px;
padding: 10px;
color: #fff;
background-color: #555;
border-radius: 3px;
pointer-events: none;
}
div {
padding: 40px;
font-size: 20px;
font-family: sans-serif;
}
3. backface-visibility
这个属性指定当元素背面朝向观察者时是否可见。想象一下卡片翻转的效果?
效果
在线预览:【传送门】
代码
- html
<div class="flip-card" tabIndex="0">
<div class="flip-card-inner">
<div class="flip-card-front">
<h3>Hover, please!</h3>
</div>
<div class="flip-card-back">
<h3>Whoaaa!!!</h3>
</div>
</div>
</div>
- css
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.flip-card {
background-color: transparent;
width: 300px;
height: 300px;
perspective: 1000px;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.flip-card:focus {
outline: 0;
}
.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner{
transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.flip-card-front {
background: linear-gradient(to left, #4364f7, #6fb1fc);
color: black;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
}
.flip-card-back {
background: linear-gradient(to right, #4364f7, #6fb1fc);
color: white;
transform: rotateY(180deg);
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
}
h3 {
font-size: 20px;
font-family: Verdana, sans-serif;
font-weight: bold;
color: #fff;
}
4. conic-gradient
渐变是一种很棒的效果。你可能曾经有过在背景上应用linear-gradient(过线性渐变)
的经验,但是你知道吗,通过conic-gradient(圆锥渐变)
我们可以用纯css来创建一张饼图!
效果
在线预览:【传送门】
代码
- html
<div class="pie-chart"></div>
- css
.pie-chart {
width: 340px;
height: 340px;
background: conic-gradient(#8b22ff 0% 25%, #ffc33b 25% 56%, #21f3d6 56% 100%);
border-radius: 50%;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
想了解更多关于conic-gradients
的效果,请参考MDN文档。
5. filter
当你拥有了CSS filter(滤镜)
,还需要使用photoshop的滤镜效果吗?
滤镜主要是用来实现图像的各种特效。我们可以实现的效果如下 - blur(模糊)
, brightness(亮度)
, contrast(对比度)
, grayscale(灰度)
, hue-rotate(色相旋转)
, opacity(透明度)
, invert(反色)
, sepia(褐色)
, saturate(饱和度)
, drop-shadow(阴影)
。
效果
在线预览:【传送门】
代码
- html
<div>
<h1>Original Image:</h1>
<img src="https://images.unsplash.com/photo-1546948630-1149ea60dc86?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80">
</div>
<h1>Filtered Images: </h1>
<div class="filter1">
<img src="https://images.unsplash.com/photo-1546948630-1149ea60dc86?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80">
</div>
<div class="filter2">
<img src="https://images.unsplash.com/photo-1546948630-1149ea60dc86?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80">
</div>
<div class="filter3">
<img src="https://images.unsplash.com/photo-1546948630-1149ea60dc86?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80">
</div>
- css
img {
width: 500px;
margin-bottom: 20px;
}
.filter1 img {
filter: grayscale(90%) sepia(13%) saturate(700%);
}
.filter2 img {
filter: hue-rotate(-40deg);
}
.filter3 img {
filter: contrast(170%) saturate(80%) blur(1px);
}
drop-shadow
滤镜真的非常棒!通过它你可以给图片增加阴影效果。
效果
在线预览:【传送门】
代码
- html
<img src="https://i.dlpng.com/static/png/261408_thumb.png" class="drop">
<img src="https://i.dlpng.com/static/png/261408_thumb.png" class="drop2">
- css
.drop {
width: 200px;
filter: drop-shadow(10px 5px 1px pink);
}
.drop2 {
width: 200px;
filter: drop-shadow(0px 0px 5px magenta);
}
6. mix-blend-mode
这个属性描述了元素的内容应该与元素的直系父元素的内容和元素的背景如何混合。
令人感到惊喜的是,通过mix-blend-mode
和filter
,图像和文本可以组合使用。更多请参考 MDN文档。
效果
在线预览:【传送门】
代码
- html
<div>
<h1 class="first">DREAM</h1>
<h1 class="second">DREAM</h1>
<h1 class="third">DREAM</h1>
</div>
- css
.first {
text-align: left;
color: navajowhite;
position: absolute;
top: -1px;
left: 8px;
}
.second {
position: absolute;
top: 3px;
left: 7px;
color: palevioletred;
mix-blend-mode: darken;
}
.third {
position: absolute;
top: 6px;
left: 3px;
color: darkturquoise;
mix-blend-mode: color-burn;
}
h1 {
font-size: calc(4rem + 10vw);
font-family: Verdana, serif;
margin: 0;
}
div {
position: relative;
}
7. first-letter
一本书或者杂志中我最喜欢的就是那漂亮的首字母下沉效果。我们通过first-letter
伪元素来实现这种效果。
效果
在线预览:【传送门】
代码
- html
<p>Anec eu odio vitae ante consequat aliquet nec id nisl. Duis ut turpis a turpis facilisis sagittis. Phasellus iaculis, augue vitae rhoncus mattis, nulla libero tristique nulla, malesuada tempor augue dui nec diam. Nullam elementum ipsum ut nisi mollis dignissim eget quis orci.</p>
<p>Aenean faucibus ante id sapien scelerisque, ac ullamcorper tortor porttitor. Vivamus mauris nisl, ornare eget purus in, pulvinar pulvinar nisi. Suspendisse ut turpis pellentesque lorem varius commodo. Mauris mi tellus, iaculis vitae sapien ut, molestie fringilla nisi.</p>
- css
@import url(https://fonts.googleapis.com/css?family=Sansita+One);
p {
font-family: Georgia;
font-size: calc(16px + 0.25vw);
line-height: 1.6;
}
p:first-child:first-letter {
font-size: calc(60px + 0.75vw);
line-height: 40px;
color: indianred;
float: left;
padding-top: 10px;
padding-right: 10px;
padding-left: 5px;
font-family: Sansita One;
}
8. shape-outside
这个属性允许我们让相邻的内联元素环绕着不规则形状的形体而不是简单的矩形进行排列。
我们可以在新窗口打开示例,然后改变窗口的大小,注意文本环绕着图片的方式是怎样变化的。
效果
在线预览:【传送门】
代码
- html
<img src="https://i.dlpng.com/static/png/261408_thumb.png"/>
<p>Aenean faucibus ante id sapien scelerisque...</p>
- css
p {
font-family: Georgia;
font-size: calc(16px + 0.25vw);
line-height: 1.6;
text-align: left;
}
img {
width: 200px;
height: 500px
shape-outside: url("https://i.dlpng.com/static/png/261408_thumb.png");
float: right;
margin: 10px;
}
body {
max-width: 80%;
margin: 0 auto;
}
9. writing-mode
这个属性定义了文本在水平或垂直方向上如何排布。
我们可以使用这些值:
horizontal-tb:水平方向内容从左往右,垂直方向自上而下的书写方式(水平布局).
vertical-lr:垂直方向内容自上而下,水平方向从左到右的书写方式(垂直布局)。
vertical-rl:垂直方向内容自上而下,水平方向自右而左的书写方式(垂直布局)。
效果
查看这个示例
以查看它的实际效果。
10. 给文本添加渐变效果
这需要结合-webkit-background-clip: text
和 -webkit-text-fill-color: transparent
这两个CSS属性来实现。
效果
在线预览:【传送门】
代码
- html
<blockquote class="decoration">You can't use up creativity. </br>The more you use, the more you have.
<cite> — Maya Angelou</cite>
</blockquote>
- css
blockquote {
font-size: 28px;
font-weight: bold;
font-family: Georgia, serif;
background: linear-gradient(to right, #4364f7, #6fb1fc);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-decoration: none;
max-width: 70vw;
}
cite {
font-size: 20px;
font-weight: bold;
background: linear-gradient(to right, #4364f7, #23d5ab);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-decoration: none;
display: block;
text-align: right;
margin-top: 20px;
}
11. 平滑滚动捕捉点
scroll-snap-type
属性设置网页容器滚动停止的时候,捕捉点如何执行。
此示例指定了垂直(y轴)滚动的值为mandatory
。MDN文档
上详细说明了其它值,如水平(x轴)滚动和proximity
等。
效果
在线预览:【传送门】
代码
- html
<div class="wrapper y-scroll-snap">
<div>Spread</div>
<div>Love</div>
<div>Not</div>
<div>Hate</div>
</div>
- css
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.wrapper {
display: flex;
overflow: auto;
flex: none;
width: 80vw;
height: 80vh;
flex-flow: column nowrap;
}
.y-scroll-snap {
scroll-snap-type: y mandatory;
}
.wrapper > div {
text-align: center;
scroll-snap-align: center;
flex: none;
line-height: 3;
font-size: 128px;
width: 100%;
height: 100%;
}
.wrapper > div:nth-child(even) {
background-color: lightsalmon;
}
.wrapper > div:nth-child(odd) {
background-color: lightpink;
}
这里仅仅展示了一部分css可以做的事情。
CSS拥有着无限的可能性!