Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
smart_core_connect
/
core-connect
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
eda07603
authored
May 18, 2018
by
Prasong Putichanchai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update view card
parent
cddd26f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
7 deletions
+39
-7
www/src/Template/Layout/blank.ctp
+1
-1
www/src/Template/UserCards/view_card.ctp
+38
-6
No files found.
www/src/Template/Layout/blank.ctp
View file @
eda07603
...
@@ -99,6 +99,6 @@
...
@@ -99,6 +99,6 @@
<?php echo $this->Html->script('custom'); ?>
<?php echo $this->Html->script('custom'); ?>
<!-- Theme Initialization Files -->
<!-- Theme Initialization Files -->
<?php echo $this->Html->script('theme.init'); ?>
<?php echo $this->Html->script('theme.init'); ?>
<?php echo $this->fetch('scriptBottom'); ?>
</body>
</body>
</html>
</html>
www/src/Template/UserCards/view_card.ctp
View file @
eda07603
...
@@ -3,8 +3,7 @@
...
@@ -3,8 +3,7 @@
<div class="row">
<div class="row">
<div class="col-xs-1 col-sm-1 col-md-1 box-arrow">
<div class="col-xs-1 col-sm-1 col-md-1 box-arrow">
<div>
<div>
<i class = "fa fa-angle-left" >
<i class = "fa fa-angle-left prev" > </i>
</i>
</div>
</div>
</div>
</div>
<div class="col-xs-9 col-sm-9 col-md-9 box-card">
<div class="col-xs-9 col-sm-9 col-md-9 box-card">
...
@@ -57,8 +56,7 @@
...
@@ -57,8 +56,7 @@
</div>
</div>
<div class="col-xs-1 col-sm-1 col-md-1 box-arrow">
<div class="col-xs-1 col-sm-1 col-md-1 box-arrow">
<div>
<div>
<i class = "fa fa-angle-right" >
<i class = "fa fa-angle-right next" ></i>
</i>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-12">
<div class="col-xs-12 col-sm-12 col-md-12">
...
@@ -119,11 +117,46 @@
...
@@ -119,11 +117,46 @@
border: 1px solid #ccc;
border: 1px solid #ccc;
height: 200px;
height: 200px;
margin-top: 10px;
margin-top: 10px;
border-radius: 20px;
box-shadow: 2px 2px 4px #ccc;
margin-bottom: 10px;
}
}
.box-arrow{
.box-arrow{
font-size:36px;
font-size:36px;
height: 200px;
height: 200px;
padding-top:20%;
padding-top:20%;
cursor: pointer;
cursor: pointer;
}
</style>
<?php $this->append('scriptBottom'); ?>
<script type="text/javascript">
$('.owl-carousel').owlCarousel({
loop:false,
items:1,
rewindNav : false,
onTranslated:callBack
});
owl = $('.owl-carousel').owlCarousel();
$(".prev").click(function () {
owl.trigger('prev.owl.carousel');
});
$(".next").click(function () {
owl.trigger('next.owl.carousel');
});
function callBack(){
if($('.owl-carousel .owl-item').last().hasClass('active')){
$('.next').hide();
$('.prev').show();
}else if($('.owl-carousel .owl-item').first().hasClass('active')){
$('.prev').hide();
$('.next').show();
}
}
</style>
}
\ No newline at end of file
//$('.prev').hide();
</script>
<?php $this->end();?>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment