找到 1575 篇文章 适用于 CSS

使用 CSS 平坦化颜色深度

Samual Sam
更新于 2020-06-29 07:15:42

224 次查看

要平坦化颜色深度,您需要创建一个 X 光片。以下参数在此过滤器中使用 - 序号参数和描述1X 光灰度并平坦化颜色深度。示例您可以尝试运行以下代码以创建 X 光片效果 - 实时演示                   CSS 教程    

使用 CSS 实现旋转进入向下右侧动画效果

Chandu yadav
更新于 2020-06-29 07:14:08

72 次查看

要使用 CSS 创建旋转进入向下动画效果,您可以尝试运行以下代码 - 示例实时演示                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes rotateInDownRight {             0% {                -webkit-transform-origin: right bottom;                -webkit-transform: rotate(90deg);                opacity: 0;             }             100% {                -webkit-transform-origin: right bottom;                -webkit-transform: rotate(0);                opacity: 1;             }          }          @keyframes rotateInDownRight {             0% {                transform-origin: right bottom;                transform: rotate(90deg);                opacity: 0;             }             100% {                transform-origin: right bottom;                transform: rotate(0);                opacity: 1;             }          }          .rotateInDownRight {             -webkit-animation-name: rotateInDownRight;             animation-name: rotateInDownRight;          }                           重新加载页面                function myFunction() {             location.reload();          }          

哪个元素用于在 CSS 中在元素之后插入一些内容

Rishi Rathor
更新于 2020-06-29 07:13:02

279 次查看

使用 :after 元素在元素之后添加一些内容。示例您可以尝试运行以下代码以在 CSS 中在元素之后插入一些内容 - 实时演示                    p:after          {             content: url(/images/bullet.gif)          }                    此行将以一个项目符号结尾。      此行将以一个项目符号结尾。      此行将以一个项目符号结尾。    

使用 CSS 实现旋转进入动画效果

Lakshmi Srinivas
更新于 2020-06-29 07:13:32

298 次查看

要使用 CSS 创建旋转进入动画效果,您可以尝试运行以下代码 - 示例实时演示                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes rotateIn {             0% {                -webkit-transform-origin: center center;                -webkit-transform: rotate(-200deg);                opacity: 0;             }             100% {                -webkit-transform-origin: center center;                -webkit-transform: rotate(0);                opacity: 1;             }          }          @keyframes rotateIn {             0% {                transform-origin: center center;                transform: rotate(-200deg);                opacity: 0;             }             100% {                transform-origin: center center;                transform: rotate(0);                opacity: 1;             }          }          .rotateIn {             -webkit-animation-name: rotateIn;             animation-name: rotateIn;          }                           重新加载页面                       function myFunction() {             location.reload();          }          

CSS volume 属性

karthikeya Boyini
更新于 2020-06-29 07:12:20

130 次查看

音量指的是声音的中值音量。它可以具有以下值 - 数字 - 任何介于“0”和“100”之间的数字。“0”表示最小可听音量级别,而 100 对应于最大舒适级别。百分比 - 这些值相对于继承的值计算,然后裁剪到“0”到“100”的范围。静音 - 完全没有声音。“0”的值与“静音”不相同。极静 - 与“0”相同。静音 - 与“25”相同。中等 - 与“50”相同。响亮 - 与“75”相同。极响 - 与“100”相同。示例让我们看一个示例 -     阅读更多

使用 CSS 实现旋转进入向下左侧动画效果

Nancy Den
更新于 2020-06-29 07:11:44

107 次查看

要使用 CSS 创建向下旋转动画效果,可以尝试运行以下代码 -示例在线演示            .animated {         background-image: url(/css/images/logo.png);         background-repeat: no-repeat;         background-position: left top;         padding-top:95px;         margin-bottom:60px;         -webkit-animation-duration: 10s;         animation-duration: 10s;         -webkit-animation-fill-mode: both;         animation-fill-mode: both;       }       @-webkit-keyframes rotateInDownLeft {         0% {           -webkit-transform-origin: left bottom;           -webkit-transform: rotate(-90deg);           opacity: 0;         }         100% {           -webkit-transform-origin: left bottom;           -webkit-transform: rotate(0);           opacity: 1;         }       }       @keyframes rotateInDownLeft {         0% {           transform-origin: left bottom;           transform: rotate(-90deg);           opacity: 0;         }         100% {           transform-origin: left bottom;           transform: rotate(0);           opacity: 1;         }       }       .rotateInDownLeft {         -webkit-animation-name: rotateInDownLeft;         animation-name: rotateInDownLeft;       }                    重新加载页面          function myFunction() {         location.reload();       }       

为什么需要文档的听觉呈现

Daniol Thomas
更新于 2020年6月20日 06:39:41

129 次浏览

文档的听觉呈现主要用于视力障碍人士。以下是一些可以使用听觉呈现而不是视觉呈现访问文档的情况。学习阅读培训车辆中的网络访问家庭娱乐工业文档医疗文档使用听觉属性时,画布由一个三维物理空间(环绕声)和一个时间空间(可以在其他声音之前、期间和之后指定声音)组成。

听觉媒体 CSS 属性

Samual Sam
更新于 2020年6月20日 06:40:32

95 次浏览

文档的听觉呈现主要用于视力障碍人士。以下是听觉媒体 CSS 属性 -azimuth 属性设置声音应从水平方向的哪个位置发出。elevation 属性设置声音应从垂直方向的哪个位置发出。cue-after 指定在朗读元素内容后播放的声音,以将其与其他内容分隔开。cue-before 指定在朗读元素内容前播放的声音,以将其与其他内容分隔开。cue 是设置 cue-before 和 cue-after 的简写。pause-after 指定在朗读元素内容后应观察到的暂停。pause-before 指定应观察到的暂停 ... 阅读更多

CSS 滚动推出动画效果

Lakshmi Srinivas
更新于 2020年6月29日 07:06:22

225 次浏览

要使用 CSS 创建滚动推出动画效果,可以尝试运行以下代码 -示例            .animated {         background-image: url(/css/images/logo.png);         background-repeat: no-repeat;         background-position: left top;         padding-top:95px;         margin-bottom:60px;         -webkit-animation-duration: 10s;         animation-duration: 10s;         -webkit-animation-fill-mode: both;         animation-fill-mode: both;       }       @-webkit-keyframes rollOut {         0% {           opacity: 1;           -webkit-transform: translateX(0px) rotate(0deg);         }         100% {           opacity: 0;           -webkit-transform: translateX(100%) rotate(120deg);         }       }       @keyframes rollOut {         0% {           opacity: 1;           transform: translateX(0px) rotate(0deg);         }         100% {           opacity: 0;           transform: translateX(100%) rotate(120deg);         }       }       .rollOut {         -webkit-animation-name: rollOut;         animation-name: rollOut;       }                    重新加载页面          function myFunction() {         location.reload();       }       

CSS 滚动进入动画效果

Krantik Chavan
更新于 2020年6月29日 07:05:37

570 次浏览

要使用 CSS 创建滚动进入动画效果,可以尝试运行以下代码 -示例在线演示            .animated {         background-image: url(/css/images/logo.png);         background-repeat: no-repeat;         background-position: left top;         padding-top:95px;         margin-bottom:60px;         -webkit-animation-duration: 10s;         animation-duration: 10s;         -webkit-animation-fill-mode: both;         animation-fill-mode: both;       }       @-webkit-keyframes rollIn {         0% {           opacity: 0;           -webkit-transform: translateX(-100%) rotate(-120deg);         }         100% {           opacity: 1;           -webkit-transform: translateX(0px) rotate(0deg);         }       }       @keyframes rollIn {         0% {           opacity: 0;           transform: translateX(-100%) rotate(-120deg);         }         100% {           opacity: 1;           transform: translateX(0px) rotate(0deg);         }       }       .rollIn {         -webkit-animation-name: rollIn;         animation-name: rollIn;       }                    重新加载页面          function myFunction() {         location.reload();       }       

广告