Skip to content

Commit

Permalink
画像スライド修正
Browse files Browse the repository at this point in the history
  • Loading branch information
YusukeKato committed Sep 21, 2024
1 parent 973a959 commit b14d875
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ body p{
width: inherit;
height: inherit;
left: 100%;
animation: slide-anime 20s linear infinite;
animation: slide-anime 25s linear infinite;
}
.slide-img {
width: inherit;
Expand All @@ -299,11 +299,12 @@ body p{
.slide img:nth-of-type(2) {animation-delay: 5s;}
.slide img:nth-of-type(3) {animation-delay: 10s;}
.slide img:nth-of-type(4) {animation-delay: 15s;}
.slide img:nth-of-type(5) {animation-delay: 20s;}
@keyframes slide-anime {
0% {left: 100%;}
3% {left: 3%;}
22% {left: 3%;}
25% {left: -100%;}
2% {left: 3%;}
18% {left: 3%;}
20% {left: -100%;}
100% {left: -100%;}
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_index.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
import os
import re
version="1000"
version="1001"

print('start: generate index.html')

Expand Down
2 changes: 1 addition & 1 deletion scripts/md2html.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
import os
import re
version="1000"
version="1001"

# markdownのファイル名を全て取得
markdown_files = []
Expand Down

0 comments on commit b14d875

Please sign in to comment.