Skip to content

Commit dacffe3

Browse files
committed
Purchase ORION theme license and add its asset files
- Theme:「ORION」(Version: 3.0) - Author: [Design Plus](http://design-plus1.com/tcd-w/) - 利用規約: [https://design-plus1.com/tcd-w/license_standard](https://design-plus1.com/tcd-w/license_standard)
1 parent 26415fc commit dacffe3

15 files changed

+310
-3
lines changed

fonts/design_plus.eot

30.7 KB
Binary file not shown.

fonts/design_plus.svg

Lines changed: 156 additions & 0 deletions
Loading

fonts/design_plus.ttf

30.6 KB
Binary file not shown.

fonts/design_plus.woff

30.6 KB
Binary file not shown.

fonts/icomoon.eot

3.57 KB
Binary file not shown.

fonts/icomoon.svg

Lines changed: 22 additions & 0 deletions
Loading

fonts/icomoon.ttf

3.41 KB
Binary file not shown.

fonts/icomoon.woff

3.49 KB
Binary file not shown.
File renamed without changes.

footer-bar/footer-bar.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
jQuery(document).ready(function($){
2+
3+
/**
4+
* スマホ用固定フッターバー
5+
*/
6+
if ($(".dp-footer-bar-share").length) {
7+
$(".dp-footer-bar-share, #modal-overlay").on("click", function() {
8+
$("#modal-content, #modal-overlay").toggleClass("hide");
9+
return false;
10+
});
11+
$("#modal-overlay, #modal-content").on("touchmove", function(e) {
12+
e.preventDefault();
13+
});
14+
}
15+
if ($(".dp-footer-bar").length) {
16+
var footerBar = $(".dp-footer-bar");
17+
var footerBarHeight = footerBar.height() || 55;
18+
footerBar.hide();
19+
//$('#return_top').hide();
20+
$('body').css('paddingBottom', footerBarHeight);
21+
$('#return_top').css('bottom', footerBarHeight);
22+
$(window).scroll(function () {
23+
if ($(this).scrollTop() > 100) {
24+
footerBar.stop().fadeIn("slow");
25+
//$('#return_top').stop().fadeIn("slow");
26+
} else {
27+
footerBar.stop().fadeOut();
28+
//$('#return_top').stop().fadeOut();
29+
}
30+
});
31+
}
32+
});

0 commit comments

Comments
 (0)