This commit is contained in:
cookfront
2017-03-14 22:53:04 +08:00
parent 7674d8d562
commit bfa472e6e5
19 changed files with 701 additions and 3 deletions

View File

@@ -25,3 +25,4 @@
@import './actionsheet.css';
@import './quantity.css';
@import './progress.css';
@import './swipe.css';

View File

@@ -0,0 +1,24 @@
@component-namespace zan {
@b swipe {
position: relative;
overflow: hidden;
width: 100%;
}
@b swipe-item {
display: none;
width: 100%;
height: 100%;
overflow: hidden;
text-align: center;
img {
max-width: 100%;
max-height: 100%;
}
&:first-child {
display: block;
}
}
}