回答編集履歴

1

追記

2020/01/12 13:46

投稿

oikashinoa
oikashinoa

スコア2826

test CHANGED
@@ -1,5 +1,21 @@
1
- [swiper_navigation](https://garigaricode.com/swiper_navigation/)の1-6を試してください。
1
+ ~~[swiper_navigation](https://garigaricode.com/swiper_navigation/)の1-6を試してください。~~
2
+
3
+ swiper-button-nextに関する部分を以下に差し替えて試してみて下さい。コチラの環境ではデフォルトのアイコンは消えて、SVGなアイコンに差し替わりました。
2
4
 
3
5
 
4
6
 
5
- (すみません。寝ます)
7
+ ```CSS
8
+
9
+ /* https://iconbox.fun/ */
10
+
11
+ /* https://icooon-mono.com/ */
12
+
13
+ /* https://yoksel.github.io/url-encoder/ */
14
+
15
+ .swiper-button-next {
16
+
17
+ background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Ctitle%3Eアセット 433%3C/title%3E%3Crect width='48' height='48' fill='none'/%3E%3Cpolygon points='24 9 9 9 24 24 9 39 24 39 39 24 24 9' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
18
+
19
+ }
20
+
21
+ ```