You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.3 KiB
74 lines
1.3 KiB
<docs>
|
|
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 自定义箭头
|
|
en-US: Custom Arrows
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
自定义箭头展示。
|
|
|
|
## en-US
|
|
|
|
Custom arrows display
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-carousel arrows>
|
|
<template #prevArrow>
|
|
<div class="custom-slick-arrow" style="left: 10px; z-index: 1">
|
|
<left-circle-outlined />
|
|
</div>
|
|
</template>
|
|
<template #nextArrow>
|
|
<div class="custom-slick-arrow" style="right: 10px">
|
|
<right-circle-outlined />
|
|
</div>
|
|
</template>
|
|
<div><h3>1</h3></div>
|
|
<div><h3>2</h3></div>
|
|
<div><h3>3</h3></div>
|
|
<div><h3>4</h3></div>
|
|
</a-carousel>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { LeftCircleOutlined, RightCircleOutlined } from '@ant-design/icons-vue';
|
|
</script>
|
|
|
|
<style scoped>
|
|
/* For demo */
|
|
:deep(.slick-slide) {
|
|
text-align: center;
|
|
height: 160px;
|
|
line-height: 160px;
|
|
background: #364d79;
|
|
overflow: hidden;
|
|
}
|
|
|
|
:deep(.slick-arrow.custom-slick-arrow) {
|
|
width: 25px;
|
|
height: 25px;
|
|
font-size: 25px;
|
|
color: #fff;
|
|
background-color: rgba(31, 45, 61, 0.11);
|
|
transition: ease all 0.3s;
|
|
opacity: 0.3;
|
|
z-index: 1;
|
|
}
|
|
:deep(.slick-arrow.custom-slick-arrow:before) {
|
|
display: none;
|
|
}
|
|
:deep(.slick-arrow.custom-slick-arrow:hover) {
|
|
color: #fff;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
:deep(.slick-slide h3) {
|
|
color: #fff;
|
|
}
|
|
</style>
|