Jony/public/config.php

54 lines
2.3 KiB
PHP
Raw Permalink Normal View History

2021-02-24 00:50:44 +00:00
<script>
2023-06-30 08:39:08 +00:00
localStorage.getItem("data-night") && document.querySelector("html").setAttribute("data-night", "night");
window.Joe = {
THEME_URL: `<?php Helper::options()->themeUrl() ?>`,
BASE_API: `<?php echo $this->options->rewrite == 0 ? Helper::options()->rootUrl . '/index.php/joe/api' : Helper::options()->rootUrl . '/joe/api' ?>`,
DYNAMIC_BACKGROUND: `<?php $this->options->JDynamic_Background() ?>`,
WALLPAPER_BACKGROUND_PC: `<?php $this->options->JWallpaper_Background_PC() ?>`,
IS_MOBILE: /windows phone|iphone|android/gi.test(window.navigator.userAgent),
BAIDU_PUSH: <?php echo $this->options->JBaiduToken ? 'true' : 'false' ?>,
DOCUMENT_TITLE: `<?php $this->options->JDocumentTitle() ?>`,
LAZY_LOAD: `<?php _getLazyload() ?>`,
BIRTHDAY: `<?php $this->options->JBirthDay() ?>`,
MOTTO: `<?php _getAsideAuthorMotto() ?>`,
PAGE_SIZE: `<?php $this->parameter->pageSize() ?>`
}
2021-02-24 00:50:44 +00:00
</script>
2021-03-01 14:35:10 +00:00
<?php
2021-03-20 01:18:29 +00:00
$fontUrl = $this->options->JCustomFont;
if (strpos($fontUrl, 'woff2') !== false) $fontFormat = 'woff2';
elseif (strpos($fontUrl, 'woff') !== false) $fontFormat = 'woff';
elseif (strpos($fontUrl, 'ttf') !== false) $fontFormat = 'truetype';
elseif (strpos($fontUrl, 'eot') !== false) $fontFormat = 'embedded-opentype';
elseif (strpos($fontUrl, 'svg') !== false) $fontFormat = 'svg';
2021-03-01 14:35:10 +00:00
?>
2021-02-24 00:50:44 +00:00
<style>
2023-06-30 08:39:08 +00:00
@font-face {
font-family: 'Joe Font';
font-weight: 400;
font-style: normal;
font-display: swap;
src: url('<?php echo $fontUrl ?>');
<?php if ($fontFormat) : ?>src: url('<?php echo $fontUrl ?>') format('<?php echo $fontFormat ?>');
<?php endif; ?>
}
2021-02-24 00:50:44 +00:00
2023-06-30 08:39:08 +00:00
body {
<?php if ($fontUrl) : ?>font-family: 'Joe Font';
<?php else : ?>font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
<?php endif; ?>
}
2021-02-24 00:50:44 +00:00
2023-06-30 08:39:08 +00:00
body::before {
background: <?php if (_isMobile()) {
echo $this->options->JWallpaper_Background_WAP ? "url(" . $this->options->JWallpaper_Background_WAP . ")" : "#f5f5f5";
} else {
echo $this->options->JWallpaper_Background_PC ? "url(" . $this->options->JWallpaper_Background_PC . ")" : "#f5f5f5";
} ?>;
background-position: center 0;
background-repeat: no-repeat;
background-size: cover;
}
2021-02-24 00:50:44 +00:00
2023-06-30 08:39:08 +00:00
<?php $this->options->JCustomCSS() ?>
2021-02-24 00:50:44 +00:00
</style>