找到 1575 篇文章 关于 CSS

在 CSS 颜色属性上执行动画

George John
更新于 2020年6月25日 11:53:20

104 次浏览

要使用 CSS 在颜色属性上实现动画,您可以尝试运行以下代码示例实时演示                    div {             width: 200px;             height: 300px;             background: white;             border: 10px solid red;             animation: myanim 3s infinite;             bottom: 30px;             position: absolute;          }          @keyframes myanim {             20% {                bottom: 100px;                box-shadow: 30px 45px 70px orange;                color: blue;             }          }                     在颜色属性上执行动画       这是一个演示 div!    

在 CSS border-top-right-radius 属性上执行动画

Samual Sam
更新于 2020年6月25日 11:52:02

142 次浏览

要使用 CSS 在 border-top-right-radius 属性上实现动画,您可以尝试运行以下代码示例实时演示                    table,th,td {             border: 2px solid black;          }          #newTable {             width: 500px;             height: 300px;             background: yellow;             border: 15px solid yellow;             animation: myanim 3s infinite;             background-position: bottom left;             background-size: 50px;          }          @keyframes myanim {             30% {                background-color: orange;                border-spacing: 50px;                border-top-color: red;                border-top-right-radius: 150px;             }          }                     执行 border-top-right-radius 动画                             科目             学生             成绩                                 PHP             Tom             90                                 Java             Henry             70                    

使用 CSS 重复径向渐变

karthikeya Boyini
更新于 2020年6月25日 11:49:41

220 次浏览

使用 repeating-radial-gradient() 函数重复径向渐变。您可以尝试运行以下代码在 CSS 中实现 repeating-radial-gradient() 函数示例实时演示                    #demo {             height: 300px;             background: repeating-radial-gradient(green 20%, orange 40%, maroon 40%);          }                     重复径向渐变          

使用 CSS 将弹性项目对齐到容器的开头

Arjun Thakur
更新于 2020年6月25日 11:49:09

111 次浏览

使用值为 flex-start 的 justify-content 属性将弹性项目对齐到开头。您可以尝试运行以下代码来实现 flex-start 值示例实时演示                    .mycontainer {             display: flex;             background-color: red;             justify-content: flex-start;          }          .mycontainer > div {             background-color: orange;             text-align: center;             line-height: 60px;             font-size: 30px;             width: 100px;             margin: 5px;          }                     结果                排名1          排名2          排名3          排名4          

为 CSS border-spacing 属性设置动画

Samual Sam
更新于 2020年6月25日 11:48:08

118 次浏览

要使用 CSS 在 border-spacing 属性上实现动画,您可以尝试运行以下代码示例实时演示                    table,th,td {             border: 1px solid green;          }          #newTable {             width: 500px;             height: 300px;             background: yellow;             border: 15px solid yellow;             animation: myanim 3s infinite;             background-position: bottom left;             background-size: 50px;          }          @keyframes myanim {             30% {                background-color: orange;                border-right-color: red;                border-right-width: 25px;                border-spacing: 50px             }          }                     执行 border-spacing 动画                             科目             学生             成绩                                 数学             Amit             98                                 科学             Sachin             99                    

在 border-right-width 属性上执行动画

Chandu yadav
更新于 2020年6月25日 11:47:36

76 次浏览

使用 CSS 实现 border-right-width 属性的动画效果,可以尝试运行以下代码示例在线演示                    div {             width: 500px;             height: 300px;             background: yellow;             border: 15px solid yellow;             background-image: url('https://tutorialspoint.com/latest/cuda.png');             animation: myanim 3s infinite;             background-position: bottom left;             background-size: 50px;          }          @keyframes myanim {             30% {                background-color: maroon;                border-right-color: red;                border-right-width: 25px;             }          }                     实现 border-right-width 的动画效果              

使用 CSS 定义 HSLA 颜色模型

karthikeya Boyini
更新于 2020-07-06 08:23:59

210 次浏览

要使用带透明度的色相、饱和度、亮度 (HSL) 模型定义颜色,请使用 hsla() CSS 方法。示例可以尝试运行以下代码,在 CSS 中实现 hsla() 函数在线演示                    h1 {             background-color:hsl(0,100%,50%);          }          h2 {             background-color:hsl(192,89%,48%);          }          p {             background-color:hsla(290,100%,50%,0.3);          }                     红色背景       蓝色背景       这是一个演示文本!    

使用 CSS 将弹性项目对齐到容器顶部

Samual Sam
更新于 2020-06-25 11:44:22

1K+ 次浏览

使用 align-items 属性并将其值设置为 flex-start,即可将弹性项目对齐到顶部。可以尝试运行以下代码,以实现 flex-start 值示例在线演示                    .mycontainer {             display: flex;             height: 300px;             background-color: red;             align-items: flex-start;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 60px;             font-size: 30px;             width: 100px;             margin: 5px;          }                     测验                问题 1          问题 2          问题 3          问题 4          问题 5          

使用 CSS 将弹性项目对齐到容器中间

Arjun Thakur
更新于 2020-07-06 08:23:19

117 次浏览

使用 align-items 属性并将其值设置为 center,即可将弹性项目对齐到中间。示例可以尝试运行以下代码,以实现 center 值在线演示                    .mycontainer {             display: flex;             background-color: orange;             align-items: center;             height: 150px;             width: 600px;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     测验                问题 1          问题 2          问题 3          问题 4          

CSS nav-up 属性

Lakshmi Srinivas
更新于 2020-06-25 11:42:28

176 次浏览

nav-up 属性用于在您按下键盘上的向上箭头按钮时向上移动。可以尝试运行以下代码来实现 CSS nav-up 属性示例在线演示                    button {             position: absolute;          }          button#btn1 {             top: 10%;             left: 15%;             nav-index: 1;             nav-right: #btn2;             nav-left: #btn4;             nav-down: #btn2;             nav-up: #btn4;          }          button#btn2 {             top: 30%;             left: 30%;             nav-index: 2;             nav-right: #btn3;             nav-left: #btn1;             nav-down: #btn3;             nav-up: #btn1;          }          button#btn3 {             top: 50%;             left: 15%;             nav-index: 3;             nav-right: #btn4;             nav-left: #btn2;             nav-down: #btn4;             nav-up: #btn2;          }          button#btn4 {             top: 30%;             left: 0%;             nav-index: 4;             nav-right: #btn1;             nav-left: #btn3;             nav-down: #btn1;             nav-up: #btn3;          }                     结果 1       结果 2       结果 3       结果 4    

广告