找到关于 CSS 的1575 篇文章

使用 CSS 设置所有动画属性的简写属性

Krantik Chavan
更新于 2020年6月24日 06:11:27

112 次浏览

设置所有动画属性的简写属性是 `animation`。它设置动画持续时间、动画名称等。您可以尝试运行以下代码来使用 `animation` 简写属性:示例在线演示                    `div {             width: 150px;             height: 200px;             background-color: yellow;             animation: myanim 2s          }          @keyframes myanim {             from {                background-color: green;             }             to {                background-color: blue;             }          }                        `

CSS `animation-timing-function` 属性

vanithasree
更新于 2020年6月24日 06:09:11

75 次浏览

您可以尝试运行以下代码来实现 `animation-timing-function` 属性:示例在线演示                    `div {             width: 150px;             height: 200px;             position: relative;             background-color: yellow;             animation-name: myanim;             animation-duration: 2s;             animation-direction: alternate-reverse;             animation-iteration-count: 3;          }          @keyframes myanim {             from {left: 100px;}             to {left: 200px;}          }          #demo1 {animation-timing-function: ease;}          #demo2 {animation-timing-function: ease-in;}                     ease 效果       ease-in 效果    `

使用 CSS 选择所有 alt 属性包含“教程”一词的元素

Nishtha Thakur
更新于 2020年6月24日 06:09:54

245 次浏览

使用 `[attribute ~= "value"]` 选择器使用 CSS 选择属性值包含指定单词的元素。您可以尝试运行以下代码来实现 `[attribute ~= "value"]` 选择器。这里,我们搜索的单词是“教程”,示例在线演示                    `[alt ~= Tutorials] {             border: 5px solid orange;             border-radius: 5px;          }                              `

CSS `animation-play-state` 属性

Sreemaha
更新于 2020年6月24日 06:08:23

69 次浏览

使用 `animation-play-state` 属性设置动画是运行还是暂停。您可以尝试运行以下代码来实现 `animation-play-state` 属性:示例在线演示                    `div {             width: 150px;             height: 200px;             position: relative;             background: red;             animation-name: myanim;             animation-duration: 2s;             animation-play-state: paused;          }          @keyframes myanim {             from {left: 0px; background-color: green;}             to {left: 100px; background-color: blue;}          }                        `

CSS `animation-name` 属性

radhakrishna
更新于 2020年6月24日 06:07:22

91 次浏览

使用 `animation-name` 属性设置 `@keyframes` 动画的名称。您可以尝试运行以下代码来实现 `animation-name` 属性:示例在线演示                    `div {             width: 150px;             height: 200px;             background-color: yellow;             animation-name: myanim;             animation-duration: 3s;             animation-delay: 3s;          }          @keyframes myanim {             from {                background-color: green;             }             to {                background-color: blue;             }          }                        `

CSS `animation-iteration-count` 属性

Ankith Reddy
更新于 2020年6月24日 06:06:47

91 次浏览

使用 `animation-iteration-count` 属性使用 CSS 设置动画应该播放的次数。您可以尝试运行以下代码来实现 `animation-iteration-count` 属性示例在线演示                    `div {             width: 150px;             height: 200px;             position: relative;             background-color: yellow;             animation-name: myanim;             animation-duration: 2s;             animation-direction: alternate-reverse;             animation-iteration-count: 3;          }          @keyframes myanim {             from {left: 100px;}             to {left: 200px;}          }          #demo1 {animation-timing-function: ease;}          #demo2 {animation-timing-function: ease-in;}                     ease 效果       ease-in 效果    `

CSS `border-box` 值

Giri Raju
更新于 2020年6月24日 06:05:16

198 次浏览

使用 CSS `background-origin` 属性设置 `border-box` 值。使用 `border-box` 值,背景图像从边框的左上角开始。您可以尝试运行以下代码来实现 `border-box` 值:示例在线演示                    `#value1 {             border: 3px solid blue;             padding: 30px;             background: url(https://tutorialspoint.com/assets/videotutorials/courses/html_online_training/380_course_216_image.jpg);             background-repeat: no-repeat;             background-origin: padding-box;          }     ... 阅读更多 `

选择所有 其 `href` 属性值包含子字符串“java”的元素 (使用 CSS)

Chandu yadav
更新于 2020年6月24日 06:03:46

646 次浏览

使用 `[attribute*=”value”]` 选择器来选择其属性值包含指定值的元素。您可以尝试运行以下代码来实现 CSS `[attribute*="value"]` 选择器,示例在线演示                    `[href* = java] {             border: 5px solid orange;             border-radius: 5px;          }                     PHP 教程       Java 教程    `

使用 CSS 将元素设置为保留由最后一个关键帧设置的样式值

Prabhas
更新于 2020年6月24日 06:01:36

136 次浏览

要将元素设置为保留由第一个关键帧设置的样式值,请使用 `animation-fill-mode` 属性和 `forwards` 值。示例在线演示                    `div {             width: 150px;             height: 200px;             position: relative;             background: red;             animation-name: myanim;             animation-duration: 2s;             animation-fill-mode: forwards;          }          @keyframes myanim {             from {left: 0px; background-color: green;}             to {left: 200px; background-color: blue;}          }                        `

使用 CSS 选择属性值以指定值结尾的元素

Nitya Raut
更新于 2020年6月24日 06:00:54

238 次浏览

要选择属性值以指定值结尾的元素,请使用 [attribute$=”value”] 选择器。您可以尝试运行以下代码来实现 CSS [attribute$ = "value"] 选择器,示例在线演示 [alt$ = Connect] { border: 5px solid blue; border-radius: 5px; }

广告