找到 1575 篇文章 关于 CSS

CSS border-top-color 属性动画

Ankith Reddy
更新于 2020-06-25 13:37:36

100 次浏览

要使用 CSS 对 border-top-color 属性实现动画,您可以尝试运行以下代码示例实时演示                    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-color 的动画                             科目             学生             成绩                                 数学             Amit             98                                 科学             Sachin             99                    

CSS grid-auto-flow 属性的使用

radhakrishna
更新于 2020-06-25 13:18:24

109 次浏览

使用 grid-auto-flow 属性在网格中包含自动放置的项目。示例您可以尝试运行以下代码以使用 CSS 实现 grid-auto-flow 属性 - 实时演示                    .container {             display: grid;             grid-auto-columns: 50px;             grid-auto-flow: column;             grid-gap: 10px;             background-color: red;             padding: 10px;          }          .container>div {             background-color: yellow;             text-align: center;             padding:10px 0;             font-size: 20px;          }                              1          2          3          4          5          6          

使用 CSS 设置元素文本是否可选择

varma
更新于 2020-06-25 13:16:59

87 次浏览

使用 CSS 的 user-select 属性来设置元素文本是否可选择:示例实时演示                    div {             user-select: none;          }                     这是一个演示标题       这是一个演示文本。您将无法选择它。    

对 CSS 字体属性执行动画

mkotla
更新于 2020-06-25 13:16:21

142 次浏览

要使用 CSS 对字体属性实现动画,您可以尝试运行以下代码:示例实时演示                    p {             border: 2px solid black;             width: 400px;             height: 100px;             animation: myanim 5s infinite;          }          @keyframes myanim {             70% {                font: 35px arial, sans-serif;             }          }                     这是一个演示文本    

使用动画更改 CSS filter 属性

George John
更新于 2020-06-25 13:13:26

256 次浏览

要使用 CSS 对 filter 属性实现动画,您可以尝试运行以下代码示例实时演示                    div {             width: 600px;             height: 300px;             background-image: url('https://tutorialspoint.com/assets/videotutorials/courses/swift_4_online_training/380_course_210_image.jpg');             border: 2px solid blue;             animation: myanim 3s infinite;             position: absolute;             column-rule: 10px inset orange;             column-count: 4;          }          @keyframes myanim {             20% {                filter:contrast(400%);             }          }                     执行 filter 属性的动画          

使用动画更改 CSS columns 属性

Sreemaha
更新于 2020-06-25 13:12:09

98 次浏览

要使用 CSS 对 columns 属性实现动画,您可以尝试运行以下代码:示例实时演示                    div {             width: 600px;             height: 300px;             background: white;             border: 10px solid red;             animation: myanim 3s infinite;             bottom: 30px;             position: absolute;             column-rule: 10px inset orange; ... 阅读更多

使用 CSS 动画更改 column-width 属性

Ankith Reddy
更新于 2020-06-25 13:11:35

295 次浏览

要使用 CSS 对 column-width 属性实现动画,您可以尝试运行以下代码示例实时演示                    div {             width: 600px;             height: 300px;             background: white;             border: 10px solid red;             animation: myanim 3s infinite;             bottom: 30px;             position: absolute;             column-rule: 10px inset ... 阅读更多

rgba() CSS 函数的使用

Giri Raju
更新于 2020-06-25 13:11:01

304 次浏览

使用 CSS 的 rgb() 函数根据 RGB 模型定义颜色。使用 CSS 的 rgba() 函数设置带有透明度的 RGB 颜色。您可以尝试运行以下代码,使用 rgba() 函数设置颜色:示例在线演示                    h1 {             background-color:hsl(0,100%,50%);          }          h2 {             background-color:rgb(0,0,255);             color: rgb(255,255,255);          }          p {             background-color:rgba(255,0,0,0.9);          }                     红色背景       蓝色背景       这是一个演示文本!    

CSS grid-auto-columns 属性的使用

Arjun Thakur
更新于 2020-06-25 13:10:22

98 次浏览

使用 grid-auto-columns 属性设置列的默认大小。您可以尝试运行以下代码,使用 CSS 实现 grid-auto-columns 属性示例在线演示                    .container {             display: grid;             grid-auto-columns: 100px;             grid-gap: 10px;             background-color:red;             padding: 10px;          }          .container>div {             background-color: yellow;             text-align: center;             padding:10px 0;             font-size: 20px;          }                              1          2          3          4          5          6          

cubic-bezier() CSS 函数的使用

George John
更新于 2020-06-25 13:09:09

浏览量 188 次

要定义三次贝塞尔曲线,请使用 cubic-bezier() 函数。您可以尝试运行以下代码来实现 cubic-bezier() 函数示例在线演示                    div {             width: 100px;             height: 100px;             background: yellow;             transition: width 3s;             transition-timing-function: cubic-bezier(0.3, 0.3, 2.0, 0.9);          }          div:hover {             width:200px;          }                     悬停在以下容器上:          

广告