找到 1575 篇文章 关于 CSS

CSS background-origin 属性

Chandu yadav
更新于 2020年6月26日 08:16:48

123 次查看

CSS background-origin 属性用于指定背景图像的位置。示例您可以尝试运行以下代码来实现 background-origin 属性:在线演示                    #demo {             border: 5px dashed red;             padding: 10px;             background-image: url("https://tutorialspoint.com/css/images/css-mini-logo.jpg");             background-origin: content-box;          }                              www.tutorialspoint.com          网站 www.tutorialspoint.com ... 阅读更多

使用 CSS 实现向左弹跳动画效果

Lakshmi Srinivas
更新于 2020年6月26日 08:16:05

163 次查看

要使用 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 bounceInLeft {             0% {                opacity: 0;                -webkit-transform: translateX(-2000px);             }             60% {                opacity: 1;                -webkit-transform: translateX(30px);             }             80% {                -webkit-transform: translateX(-10px);             }             100% {                -webkit-transform: translateX(0);             }          }          @keyframes bounceInLeft {             0% {                opacity: 0;                transform: translateX(-2000px);             }             60% {                opacity: 1;                transform: translateX(30px);             }             80% {                transform: translateX(-10px);             }             100% {                transform: translateX(0);             }          }          .bounceInLeft {             -webkit-animation-name: bounceInLeft;             animation-name: bounceInLeft;          }                           重新加载页面                function myFunction() {             location.reload();          }          

使用 CSS 实现向下弹跳动画效果

George John
更新于 2020年6月26日 08:15:14

183 次查看

要使用 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 bounceInDown {             0% {                opacity: 0;                -webkit-transform: translateY(-2000px);             }             60% {                opacity: 1;                -webkit-transform: translateY(30px);             }             80% {                -webkit-transform: translateY(-10px);             }             100% {                -webkit-transform: translateY(0);             }          }          @keyframes bounceInDown {             0% {                opacity: 0;                transform: translateY(-2000px);             }             60% {                opacity: 1;                transform: translateY(30px);             }             80% {                transform: translateY(-10px);             }             100% {                transform: translateY(0);             }          }          .bounceInDown { -           webkit-animation-name: bounceInDown;             animation-name: bounceInDown;          }                           重新加载页面                function myFunction() {             location.reload();          }          

使用 CSS 实现弹跳动画效果

Samual Sam
更新于 2020年3月16日 07:58:10

151 次查看

要使用 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 bounceIn { 0% { opacity: 0; -webkit-transform: scale(.3); } 50% { opacity: 1; -webkit-transform: scale(1.05); } 70% { -webkit-transform: scale(.9); } 100% { -webkit-transform: scale(1); } } @keyframes bounceIn { 0% { opacity: 0; transform: scale(.3); } 50% { opacity: 1; transform: scale(1.05); } 70% { transform: scale(.9); } 100% { transform: scale(1); } } .bounceIn { -webkit-animation-name: bounceIn; animation-name: bounceIn; } 重新加载页面 function myFunction() { location.reload(); }

CSS @charset 规则的使用

Ankith Reddy
更新于 2020年3月16日 07:57:31

142 次查看

如果您使用除 ASCII 或 ISO-8859-1 之外的字符集编写文档,则可能需要在样式表顶部设置 @charset 规则,以指示样式表使用的是哪个字符集。@charset 规则必须写在样式表的开头,前面甚至不能有空格。值用引号括起来,并且应该是标准字符集之一。示例让我们看一个示例

CSS 弹跳动画效果

Lakshmi Srinivas
更新于 2020年3月16日 07:56:05

345 次查看

弹跳动画效果用于在元素撞击表面后快速向上、向后或远离表面移动。示例您可以尝试运行以下代码来实现弹跳动画效果 -实时演示 .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: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes bounce { 0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 40% {-webkit-transform: translateY(-30px);} 60% {-webkit-transform: translateY(-15px);} } @keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-30px);} 60% {transform: translateY(-15px);} } .bounce { -webkit-animation-name: bounce; animation-name: bounce; } 重新加载页面 function myFunction() { location.reload(); }

使用 CSS 指定背景图像的位置

Arjun Thakur
更新于 2020年3月16日 07:55:22

89 次查看

CSS background-origin 属性用于指定背景图像的位置。您可以尝试运行以下代码来实现 background-image 属性 -示例实时演示 #demo { border: 5px dashed red; padding: 10px; background-image: url("https://tutorialspoint.com/css/images/css-mini-logo.jpg"); background-origin: content-box; } www.tutorialspoint.com ... 阅读更多

CSS 中的动画效果

karthikeya Boyini
更新于 2020年3月16日 07:54:25

149 次查看

动画是创建运动效果并改变外观的过程。CSS 支持不同的动画效果来改变事件运动。在动画中,使用了一个名为关键帧的概念。关键帧将控制 CSS3 中的中间动画步骤。以下示例显示了关键帧语法的动画的高度、宽度、颜色、名称和持续时间 -语法@keyframes animation { from {background-color: pink;} to {background-color: green;} } div { width: 100px; height: 100px; background-color: red; animation-name: animation; animation-duration: 5s; }

如何使用 CSS 声明背景的绘制区域

Chandu yadav
更新于 2020年3月16日 07:50:52

163 次查看

CSS background-clip 属性用于声明背景的绘制区域。您可以尝试运行以下代码来使用 CSS 实现 background-clip 属性 -示例实时演示 #demo { border: 5px dashed red; padding: 10px; background: orange; background-clip: padding-box; } ... 阅读更多

CSS pause-before 属性

George John
更新于 2020年3月16日 07:49:29

77 次查看

此属性指定在朗读元素内容之前要观察的暂停。可能的值是时间 - 以绝对时间单位(秒和毫秒)表示暂停。百分比 - 指的是 speech-rate 属性值的倒数。例如,如果 speech-rate 为每分钟 120 个单词(即一个单词需要半秒或 500 毫秒),则 pause-before 为 100% 表示暂停 500 毫秒,pause-before 为 20% 表示暂停 100 毫秒。

广告