仅仅用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-modefilter,图像和文本可以组合使用。更多请参考 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> &mdash; 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轴)滚动的值为mandatoryMDN文档
上详细说明了其它值,如水平(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拥有着无限的可能性!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,233评论 6 495
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,357评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,831评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,313评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,417评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,470评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,482评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,265评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,708评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,997评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,176评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,503评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,150评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,391评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,034评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,063评论 2 352

推荐阅读更多精彩内容

  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,747评论 1 92
  • HTML 5 HTML5概述 因特网上的信息是以网页的形式展示给用户的,因此网页是网络信息传递的载体。网页文件是用...
    阿啊阿吖丁阅读 3,875评论 0 0
  • 选择qi:是表达式 标签选择器 类选择器 属性选择器 继承属性: color,font,text-align,li...
    love2013阅读 2,308评论 0 11
  • CSS 指层叠样式表(Cascading Style Sheets),是一种用来为结构化文档(如 HTML 文档或...
    神齐阅读 2,089评论 0 14
  • 本文主要是起笔记的作用,内容来自慕课网. 认识CSS样式 CSS全称为“层叠样式表 (Cascading Styl...
    0o冻僵的企鹅o0阅读 2,632评论 0 30