mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Slider): add slide animation & improve click area (#2146)
This commit is contained in:
parent
dc9fab0a1e
commit
dd6053cd09
@ -6,15 +6,26 @@
|
||||
border-radius: 999px;
|
||||
.theme(background-color, '@gray-light');
|
||||
|
||||
// use pseudo element to expand click area
|
||||
&::before {
|
||||
position: absolute;
|
||||
top: -@padding-xs;
|
||||
right: 0;
|
||||
bottom: -@padding-xs;
|
||||
left: 0;
|
||||
content: '';
|
||||
}
|
||||
|
||||
&__bar {
|
||||
position: relative;
|
||||
border-radius: inherit;
|
||||
transition: width @animation-duration-fast;
|
||||
.theme(background-color, '@blue');
|
||||
}
|
||||
|
||||
&__button {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
|
||||
.theme(background-color, '@white');
|
||||
|
@ -96,7 +96,11 @@ VantComponent({
|
||||
|
||||
this.setData({
|
||||
value,
|
||||
barStyle: `width: ${width}; height: ${addUnit(barHeight)};`
|
||||
barStyle: `
|
||||
width: ${width};
|
||||
height: ${addUnit(barHeight)};
|
||||
${drag ? 'transition: none;' : ''}
|
||||
`,
|
||||
});
|
||||
|
||||
if (drag) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user