mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Merge branch 'develop' of github.com:xpressengine/xe-core into develop
This commit is contained in:
commit
a8317de256
3 changed files with 10 additions and 4 deletions
|
|
@ -918,7 +918,7 @@ a:hover, a:active, a:focus {
|
|||
background-color: rgba(0, 0, 0, 0.2);
|
||||
cursor: pointer;
|
||||
}
|
||||
.pagination {
|
||||
.swiper-pagination {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
|
|
|
|||
|
|
@ -126,6 +126,11 @@
|
|||
time: 3000
|
||||
});
|
||||
}
|
||||
|
||||
// Login help, warning
|
||||
$("#warning").on('click', function(e){
|
||||
$(this).css('display', 'none');
|
||||
});
|
||||
|
||||
// Scroll to top
|
||||
var scrollToTop = function() {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--// META -->
|
||||
{Context::addHtmlHeader('<meta name="viewport" content="width=device-width, user-scalable=no">')}
|
||||
{Context::addHtmlHeader('<meta name="viewport" content="width=device-width, user-scalable=yes">')}
|
||||
<!--// LANG -->
|
||||
<load target="./lang" />
|
||||
|
||||
|
|
@ -346,7 +346,7 @@
|
|||
</div>
|
||||
<!-- END:슬라이드 -->
|
||||
<!-- Add Pagination -->
|
||||
<div class="pagination"></div>
|
||||
<div class="swiper-pagination"></div>
|
||||
<div class="swiper-button left"><button type="button" class="swiper-button-prev"><i class="xi-angle-left"></i></button></div>
|
||||
<div class="swiper-button right"><button type="button" class="swiper-button-next"><i class="xi-angle-right"></i></button></div>
|
||||
</div>
|
||||
|
|
@ -477,6 +477,7 @@
|
|||
<span class="checkbox"></span> {$lang->keep_signed}
|
||||
</label>
|
||||
<div id="warning">
|
||||
<p style="text-align:right;"><i class="xi-close"></i></p>
|
||||
<p>{str_replace('\n\n', '<br />', $lang->about_keep_signed)}</p>
|
||||
<div class="edge"></div>
|
||||
</div>
|
||||
|
|
@ -529,7 +530,7 @@ jQuery(document).ready(function () {
|
|||
var swiper = new Swiper('.swiper-container', {
|
||||
autoplay: 6000,
|
||||
loop: true,
|
||||
pagination: '.pagination',
|
||||
pagination: '.swiper-pagination',
|
||||
paginationClickable: true
|
||||
});
|
||||
jQuery('.swiper-button-next').on('click', function(e){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue