找到 1575 篇文章 适用于 CSS
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(); }
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(); }
130 次查看
音量指的是声音的中值音量。它可以具有以下值 - 数字 - 任何介于“0”和“100”之间的数字。“0”表示最小可听音量级别,而 100 对应于最大舒适级别。百分比 - 这些值相对于继承的值计算,然后裁剪到“0”到“100”的范围。静音 - 完全没有声音。“0”的值与“静音”不相同。极静 - 与“0”相同。静音 - 与“25”相同。中等 - 与“50”相同。响亮 - 与“75”相同。极响 - 与“100”相同。示例让我们看一个示例 - 阅读更多
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(); }
95 次浏览
文档的听觉呈现主要用于视力障碍人士。以下是听觉媒体 CSS 属性 -azimuth 属性设置声音应从水平方向的哪个位置发出。elevation 属性设置声音应从垂直方向的哪个位置发出。cue-after 指定在朗读元素内容后播放的声音,以将其与其他内容分隔开。cue-before 指定在朗读元素内容前播放的声音,以将其与其他内容分隔开。cue 是设置 cue-before 和 cue-after 的简写。pause-after 指定在朗读元素内容后应观察到的暂停。pause-before 指定应观察到的暂停 ... 阅读更多
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(); }
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(); }