Skip to content

Commit

Permalink
css修正、画像スライド
Browse files Browse the repository at this point in the history
  • Loading branch information
YusukeKato committed Sep 21, 2024
1 parent b14d875 commit 1e18dd3
Show file tree
Hide file tree
Showing 19 changed files with 3 additions and 13 deletions.
10 changes: 0 additions & 10 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -473,16 +473,6 @@ details[open] summary {
margin-left: auto;
margin-right: auto;
}
.slide img:nth-of-type(1) {animation-delay: 0s;}
.slide img:nth-of-type(2) {animation-delay: 5s;}
.slide img:nth-of-type(3) {animation-delay: 10s;}
@keyframes slide-anime{
0% {left: 100%;}
4% {left: 3.5%;}
29% {left: 3.5%;}
33% {left: -100%;}
100% {left: -100%;}
}
}

@media screen and (max-width: 599px) {
Expand Down
Binary file added images/2024/20240922_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240922_1.jpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240922_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240922_2.jpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240922_3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240922_3.jpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_1.jpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_2.jpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_3.jpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_4.jpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024/20240923_5.jpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions 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="1001"
version="1002"

print('start: generate index.html')

Expand Down Expand Up @@ -49,7 +49,7 @@
write_lines.append('<meta charset="utf-8">\n')
write_lines.append('<meta name="viewport" content="width=device-width, initial-scale=1.0">\n')
write_lines.append('<link rel="icon" href="https://yusukekato.jp/images/favicon.png">\n')
write_lines.append('<link rel="stylesheet" href="https://yusukekato.jp/css/style.css?version="'+version+'>\n')
write_lines.append('<link rel="stylesheet" href="https://yusukekato.jp/css/style.css?version='+version+'">\n')
write_lines.append('<link rel="preconnect" href="https://fonts.googleapis.com">\n')
write_lines.append('<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>\n')
write_lines.append('<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:[email protected]&display=swap" rel="stylesheet">\n')
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="1001"
version="1002"

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

0 comments on commit 1e18dd3

Please sign in to comment.