Skip to content

Commit

Permalink
スマホ画面対応01
Browse files Browse the repository at this point in the history
  • Loading branch information
TomonoriHattori committed Jun 17, 2024
1 parent 69a8366 commit 0df7574
Show file tree
Hide file tree
Showing 29 changed files with 11,371 additions and 8,599 deletions.
780 changes: 394 additions & 386 deletions AskToAI.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions AzureOpenAI.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions ConfigFile.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions CustomLLM.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions DocumentFile.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions Embedding.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions FileView.html

Large diffs are not rendered by default.

793 changes: 398 additions & 395 deletions Gemini.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions GenerateImage.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions IndexRegister.html

Large diffs are not rendered by default.

823 changes: 409 additions & 414 deletions MainOperation.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions RAG.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions Recording.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions SearchImage.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions Security.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions SetUp.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions SummarizeDocument.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions Translation.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions UseAI.html

Large diffs are not rendered by default.

786 changes: 395 additions & 391 deletions VoiceInput.html

Large diffs are not rendered by default.

55 changes: 55 additions & 0 deletions gitbook/gitbook-plugin-back-to-top-button/plugin.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
.back-to-top {
position: fixed;
bottom: 25px;
right: 25px;
background: rgba(0, 0, 0, 0.5);
width: 50px;
height: 50px;
display: block;
text-decoration: none;
-webkit-border-radius: 35px;
-moz-border-radius: 35px;
border-radius: 35px;
display: none;
}
.back-to-top i {
color: #fff;
margin: 0;
position: relative;
left: 15px;
top: 14px;
font-size: 22px;
}
.back-to-top:hover {
background: rgba(0, 0, 0, 0.9);
cursor: pointer;
}
.book.color-theme-1 .back-to-top {
background: rgba(112, 66, 20, 0.5);
}
.book.color-theme-1 .back-to-top i {
color: #f3eacb;
}
.book.color-theme-1 .back-to-top:hover {
background: rgba(112, 66, 20, 0.9);
}
.book.color-theme-2 .back-to-top {
background: rgba(189, 202, 219, 0.5);
}
.book.color-theme-2 .back-to-top i {
color: #1C1F2B;
}
.book.color-theme-2 .back-to-top:hover {
background: rgba(189, 202, 219, 0.9);
}

@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) {
.back-to-top {
bottom: 10px;
right: 10px;
}
}
25 changes: 25 additions & 0 deletions gitbook/gitbook-plugin-back-to-top-button/plugin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
var gitbook = window.gitbook;

gitbook.events.on('page.change', function() {

var back_to_top_button = ['<div class="back-to-top"><i class="fa fa-arrow-up"></i></div>'].join("");
$(".book").append(back_to_top_button)

$(".back-to-top").hide();

$('.book-body,.body-inner').on('scroll', function () {
if ($(this).scrollTop() > 100) {
$('.back-to-top').fadeIn();
} else {
$('.back-to-top').fadeOut();
}
});

$('.back-to-top').click(function () {
$('.book-body,.body-inner').animate({
scrollTop: 0
}, 800);
return false;
});

});
Binary file added img/Home_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
788 changes: 395 additions & 393 deletions index.html

Large diffs are not rendered by default.

Loading

0 comments on commit 0df7574

Please sign in to comment.