mirror of https://github.com/ElemeFE/element
Merge pull request #2010 from Leopoldthecoder/carousel-hover
Carousel: improve arrow hover behavior in card modepull/2038/head
commit
db2e3f17c5
|
@ -36,9 +36,8 @@
|
||||||
|
|
||||||
.demo-carousel .el-carousel__item {
|
.demo-carousel .el-carousel__item {
|
||||||
h3 {
|
h3 {
|
||||||
color: #475669;
|
color: #fff;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
opacity: 0.75;
|
|
||||||
line-height: 300px;
|
line-height: 300px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
:class="{
|
:class="{
|
||||||
'is-active': active,
|
'is-active': active,
|
||||||
'el-carousel__item--card': $parent.type === 'card',
|
'el-carousel__item--card': $parent.type === 'card',
|
||||||
'is-in-stage': inStage
|
'is-in-stage': inStage,
|
||||||
|
'is-hover': hover
|
||||||
}"
|
}"
|
||||||
@click="handleItemClick"
|
@click="handleItemClick"
|
||||||
:style="{
|
:style="{
|
||||||
|
@ -33,6 +34,7 @@
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
hover: false,
|
||||||
translate: 0,
|
translate: 0,
|
||||||
scale: 1,
|
scale: 1,
|
||||||
active: false,
|
active: false,
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
<button
|
<button
|
||||||
v-if="arrow !== 'never'"
|
v-if="arrow !== 'never'"
|
||||||
v-show="arrow === 'always' || hover"
|
v-show="arrow === 'always' || hover"
|
||||||
|
@mouseenter="handleButtonEnter('left')"
|
||||||
|
@mouseleave="handleButtonLeave"
|
||||||
@click.stop="throttledArrowClick(activeIndex - 1)"
|
@click.stop="throttledArrowClick(activeIndex - 1)"
|
||||||
class="el-carousel__arrow el-carousel__arrow--left">
|
class="el-carousel__arrow el-carousel__arrow--left">
|
||||||
<i class="el-icon-arrow-left"></i>
|
<i class="el-icon-arrow-left"></i>
|
||||||
|
@ -20,6 +22,8 @@
|
||||||
<button
|
<button
|
||||||
v-if="arrow !== 'never'"
|
v-if="arrow !== 'never'"
|
||||||
v-show="arrow === 'always' || hover"
|
v-show="arrow === 'always' || hover"
|
||||||
|
@mouseenter="handleButtonEnter('right')"
|
||||||
|
@mouseleave="handleButtonLeave"
|
||||||
@click.stop="throttledArrowClick(activeIndex + 1)"
|
@click.stop="throttledArrowClick(activeIndex + 1)"
|
||||||
class="el-carousel__arrow el-carousel__arrow--right">
|
class="el-carousel__arrow el-carousel__arrow--right">
|
||||||
<i class="el-icon-arrow-right"></i>
|
<i class="el-icon-arrow-right"></i>
|
||||||
|
@ -109,6 +113,32 @@ export default {
|
||||||
this.startTimer();
|
this.startTimer();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
itemInStage(item, index) {
|
||||||
|
const length = this.items.length;
|
||||||
|
if (index === length - 1 && item.inStage && this.items[0].active ||
|
||||||
|
(item.inStage && this.items[index + 1] && this.items[index + 1].active)) {
|
||||||
|
return 'left';
|
||||||
|
} else if (index === 0 && item.inStage && this.items[length - 1].active ||
|
||||||
|
(item.inStage && this.items[index - 1] && this.items[index - 1].active)) {
|
||||||
|
return 'right';
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleButtonEnter(arrow) {
|
||||||
|
this.items.forEach((item, index) => {
|
||||||
|
if (arrow === this.itemInStage(item, index)) {
|
||||||
|
item.hover = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleButtonLeave() {
|
||||||
|
this.items.forEach(item => {
|
||||||
|
item.hover = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
handleItemChange() {
|
handleItemChange() {
|
||||||
debounce(100, () => {
|
debounce(100, () => {
|
||||||
this.updateItems();
|
this.updateItems();
|
||||||
|
|
|
@ -20,7 +20,8 @@
|
||||||
&.is-in-stage {
|
&.is-in-stage {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
z-index: var(--index-normal);
|
z-index: var(--index-normal);
|
||||||
&:hover .el-carousel__mask {
|
&:hover .el-carousel__mask,
|
||||||
|
&.is-hover .el-carousel__mask {
|
||||||
opacity: 0.12;
|
opacity: 0.12;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue