找到 1575 篇文章 关于 CSS
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 ... 阅读更多
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(); }
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(); }
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(); }
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(); }
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 ... 阅读更多
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; }
163 次查看
CSS background-clip 属性用于声明背景的绘制区域。您可以尝试运行以下代码来使用 CSS 实现 background-clip 属性 -示例实时演示 #demo { border: 5px dashed red; padding: 10px; background: orange; background-clip: padding-box; } ... 阅读更多