187 次浏览
此属性是设置 pause-before 和 pause-after 的简写。如果给出两个值,则第一个值是 pause-before,第二个值是 pause-after。示例让我们来看一个 CSS 中 pause 属性的示例:
116 次浏览
CSS background 属性用于在一个部分中设置所有背景图像属性。示例您可以尝试运行以下代码来实现 background 属性:在线演示 #demo { background: lightblue url("https://tutorialspoint.com/css/images/css-mini-logo.jpg") no-repeat fixed top; } www.tutorialspoint.com Tutorials Point 源于这样一个理念……阅读更多
339 次浏览
波浪效果用于为对象赋予正弦波失真,使其看起来像波浪。此过滤器可以使用以下参数:序号参数和描述1Add值为 1 会将原始图像添加到波浪图像中,值为 0 则不会。2Freq波浪的数量。3Light波浪上的光强度(从 0 到 100)。4Phase正弦波应从哪个角度开始(从 0 到 100)。5Strength波浪效果的强度。示例您可以尝试运行以下代码来设置波浪效果:在线演示 文本示例: CSS 教程
69 次浏览
使用 border-bottom-left-radius 属性设置左下角的边框。您可以尝试运行以下代码来实现 border-bottom-left-radius 属性:示例在线演示 #rcorner { border-radius: 25px; border-bottom-left-radius: 45px; background: blue; padding: 20px; width: 200px; height: 150px; } 圆角!
154 次浏览
要使用 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 fadeOutRight { 0% { opacity: 1; -webkit-transform: translateX(0); } 100% { opacity: 0; -webkit-transform: translateX(20px); } } @keyframes fadeOutRight { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(20px); } } .fadeOutRight { -webkit-animation-name: fadeOutRight; animation-name: fadeOutRight; } animation-name: fadeOutLeft; 重新加载页面 function myFunction() { location.reload(); }
61 次浏览
使用 border-bottom-right-radius 属性设置右下角的边框。您可以尝试运行以下代码来实现 border-bottom-right-radius 属性:示例在线演示 #rcorner { border-radius: 25px; border-bottom-right-radius: 45px; background: orange; padding: 20px; width: 200px; height: 150px; } 圆角!
73 次浏览
在 CSS 中使用 border-top-right-radius 属性设置右上角的圆角边框。您可以尝试运行以下代码来实现 border-top-right-radius 属性:示例在线演示 #rcorner { border-radius: 25px; border-top-right-radius: 45px; background: orange; padding: 20px; width: 200px; height: 150px; } 圆角!
96 次浏览
要使用 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 fadeOutLeftBig { 0% { opacity: 1; -webkit-transform: translateX(0); } 100% { opacity: 0; -webkit-transform: translateX(-2000px); } } @keyframes fadeOutLeftBig { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(-2000px); } } .fadeOutLeftBig { -webkit-animation-name: fadeOutLeftBig; animation-name: fadeOutLeftBig; } 重新加载页面 function myFunction() { location.reload(); }
142 次浏览
使用 border-radius 属性设置四个 border-radius 属性。您可以尝试运行以下代码来实现 border-radius 属性:示例在线演示 #rcorner { border-radius: 25px; background: #8AC007; padding: 20px; width: 200px; height: 150px; } 圆角!
浏览量:377
CSS3 圆角用于通过 border-radius 属性为主体或文本添加特殊颜色角。示例在线演示 #rcorner { border-radius: 25px; background: #8AC007; padding: 20px; width: 200px; height: 150px; } 圆角!