有一种方法可以更改箭头

https://github.com/SSENSE/vue-carousel

到base64图像?

最佳答案

我认为该库没有提供内置方法,但是我建议您将其作为background-image添加到arrow元素中。

像这样:

.VueCarousel-navigation-prev {
    background-image: 'data:image/png; base64, ...'; // add your image as base64
    font-size: 0; // to hide the unicode arrow provided by the library

    // ... your custom styles (height, width...)
}


然后对下一个按钮相同:

.VueCarousel-navigation-prev{ /* same here */ }

10-06 12:33
查看更多