mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:09:08 +08:00
33686a375e
* 使用自定义 css 属性初步,支持大部分组件的展现 * button 大部分可以看了 * cxd 和 dark 大部分正常 * 修复一些细节样式错误;补充 css 变量的文档 * 修复几个脚本发现的错误 * 完善一下注释 * 修复一些样式不一致问题 * 修复可能存在的 css xss * 恢复 font-variant 功能 * 修复绝大部分 @if 相关的问题 * 恢复之前的注释 * 修复小错误,并将所有 background-color 改成 background,这样就能设置渐变色 * 修复 button group 在 cxd 下不一致问题 * 缩小查看配置和复制配置的宽度,留出更多空间 * 修复一些潜在的错误 * 恢复 utilities 中 label 背景色的设置 * 修复错误的 css 变量 * 补充 IE11 Variables Polyfill
168 lines
3.1 KiB
SCSS
168 lines
3.1 KiB
SCSS
@mixin arrow-control {
|
|
width: 10%;
|
|
min-width: var(--Carousel-arrowControl-width);
|
|
height: 100%;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
transition-duration: var(--Carousel-transitionDuration);
|
|
svg {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
right: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: var(--Carousel-svg-width);
|
|
height: var(--Carousel-svg-height);
|
|
}
|
|
}
|
|
|
|
.#{$ns}Carousel {
|
|
min-width: var(--Carousel-minWidth);
|
|
height: var(--Carousel-height);
|
|
position: relative;
|
|
display: block;
|
|
background: var(--Carousel-bg);
|
|
|
|
&.#{$ns}Carousel--light {
|
|
.#{$ns}Carousel-dot {
|
|
background: var(--Carousel--light-control);
|
|
}
|
|
|
|
svg {
|
|
fill: var(--Carousel--light-control);
|
|
}
|
|
|
|
.#{$ns}Carousel-item {
|
|
.title,
|
|
.description {
|
|
color: var(--Carousel--light-control);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.#{$ns}Carousel--dark {
|
|
.#{$ns}Carousel-dot {
|
|
background: var(--Carousel--dark-control);
|
|
}
|
|
|
|
svg {
|
|
fill: var(--Carousel--dark-control);
|
|
}
|
|
|
|
.#{$ns}Carousel-item {
|
|
.title,
|
|
.description {
|
|
color: var(--Carousel--dark-control);
|
|
}
|
|
}
|
|
}
|
|
|
|
&-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
.#{$ns}Carousel-item {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
transition: ease-out all var(--Carousel-transitionDuration);
|
|
|
|
&.fade {
|
|
opacity: 0;
|
|
}
|
|
|
|
&.fade.in {
|
|
opacity: 1;
|
|
}
|
|
|
|
&.slide {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
&.slide.in {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
&.slide.out {
|
|
transform: translateX(-100%);
|
|
}
|
|
|
|
&.slideRight {
|
|
transform: translateX(-100%);
|
|
}
|
|
|
|
&.slideRight.in {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
&.slideRight.out {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.title {
|
|
position: absolute;
|
|
bottom: var(--Carousel-imageTitle-bottom);
|
|
text-align: center;
|
|
width: 100%;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.description {
|
|
position: absolute;
|
|
bottom: var(--Carousel-imageDescription-bottom);
|
|
text-align: center;
|
|
width: 100%;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: cover;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-dotsControl {
|
|
position: absolute;
|
|
bottom: 0px;
|
|
width: 100%;
|
|
z-index: 100;
|
|
text-align: center;
|
|
|
|
.#{$ns}Carousel-dot {
|
|
display: inline-block;
|
|
height: var(--Carousel-dot-width);
|
|
width: var(--Carousel-dot-height);
|
|
border-radius: var(--Carousel-dot-borderRadius);
|
|
margin: var(--Carousel-dot-margin);
|
|
transition-duration: var(--Carousel-transitionDuration);
|
|
opacity: 0.3;
|
|
|
|
&.is-active {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-arrowsControl {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: inherit;
|
|
z-index: 100;
|
|
text-align: center;
|
|
|
|
.#{$ns}Carousel-leftArrow {
|
|
@include arrow-control;
|
|
left: 0;
|
|
}
|
|
|
|
.#{$ns}Carousel-rightArrow {
|
|
@include arrow-control;
|
|
right: 0;
|
|
}
|
|
}
|
|
}
|