ant-design-vue/components/carousel/demo/customArrows.md

67 lines
1.2 KiB
Markdown
Raw Normal View History

2018-07-23 08:27:50 +00:00
<cn>
#### 自定义箭头
自定义箭头展示。
</cn>
<us>
#### Custom Arrows
Custom arrows display
</us>
```html
<template>
<a-carousel arrows>
2018-07-23 09:23:25 +00:00
<div
slot="prevArrow" slot-scope="props"
class="custom-slick-arrow"
style="left: 10px;zIndex: 1"
>
<a-icon type="left-circle" />
</div>
<div
slot="nextArrow" slot-scope="props"
class="custom-slick-arrow"
style="right: 10px"
>
<a-icon type="right-circle" />
</div>
2018-07-23 08:27:50 +00:00
<div><h3>1</h3></div>
<div><h3>2</h3></div>
<div><h3>3</h3></div>
<div><h3>4</h3></div>
</a-carousel>
</template>
<script>
export default {}
</script>
<style scoped>
/* For demo */
.ant-carousel >>> .slick-slide {
text-align: center;
height: 160px;
line-height: 160px;
background: #364d79;
overflow: hidden;
}
.ant-carousel >>> .custom-slick-arrow {
2018-07-23 09:23:25 +00:00
width: 25px;
height: 25px;
2018-07-23 08:27:50 +00:00
font-size: 25px;
2018-07-23 09:23:25 +00:00
color: #fff;
background-color: rgba(31,45,61,.11);
opacity: 0.3;
2018-07-23 08:27:50 +00:00
}
.ant-carousel >>> .custom-slick-arrow:before {
display: none;
}
.ant-carousel >>> .custom-slick-arrow:hover {
2018-07-23 09:23:25 +00:00
opacity: 0.5;
2018-07-23 08:27:50 +00:00
}
.ant-carousel >>> .slick-slide h3 {
color: #fff;
}
</style>
```