Add light box.
This commit is contained in:
parent
6e7dd9cab5
commit
d9232a13e6
|
@ -372,6 +372,12 @@
|
||||||
// 當文件物件模型(DOM)載入後,執行init函數
|
// 當文件物件模型(DOM)載入後,執行init函數
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
init();
|
init();
|
||||||
|
if( $('div[data-pp="1000"]').text() !== ''){
|
||||||
|
$('.black-screen').addClass('active');
|
||||||
|
}
|
||||||
|
$('.close-btn').click(function() {
|
||||||
|
$('.black-screen').removeClass('active');
|
||||||
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
// 執行 member等高計算,目前改用flexbox故mark掉 by ika 20160105
|
// 執行 member等高計算,目前改用flexbox故mark掉 by ika 20160105
|
||||||
|
|
|
@ -19,7 +19,65 @@
|
||||||
|
|
||||||
// Widget
|
// Widget
|
||||||
@import "widget/*";
|
@import "widget/*";
|
||||||
|
.black-screen{
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
opacity: 0;
|
||||||
|
top: -20000px;
|
||||||
|
background: rgba(0,0,0,.7);
|
||||||
|
z-index: 1000;
|
||||||
|
left: 0;
|
||||||
|
transition:opacity .3s ,top 0s .3s;
|
||||||
|
&.active{
|
||||||
|
opacity: 1;
|
||||||
|
top:0;
|
||||||
|
transition:opacity .3s;
|
||||||
|
.content{
|
||||||
|
transform:translate(-50%,-50%);
|
||||||
|
opacity: 1;
|
||||||
|
top:50%;
|
||||||
|
left: 50%;
|
||||||
|
// box-shadow: #dcabff 0px 0px 150px;
|
||||||
|
transition:opacity 1s .8s,top .5s .7s ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.content{
|
||||||
|
background: #fff;
|
||||||
|
color:#666;
|
||||||
|
font-family: '微軟正黑體','sans-serif';
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
left:-20000px;
|
||||||
|
top:60%;
|
||||||
|
transform:translate(-50%,-50%);
|
||||||
|
transform-origin:center;
|
||||||
|
width: 90%;
|
||||||
|
font-weight: bold;
|
||||||
|
transition:opacity .5s ,top .5s, left 0s .5s;
|
||||||
|
padding: 2px;
|
||||||
|
@media (min-width: 768px){
|
||||||
|
width: 40%;
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px){
|
||||||
|
padding: 30px 10px;
|
||||||
|
}
|
||||||
|
.close-btn{
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top:0;
|
||||||
|
padding: 5px 10px;
|
||||||
|
background: $theme-color-main;
|
||||||
|
color:#fff;
|
||||||
|
font-size: 18px;
|
||||||
|
transition:.3s;
|
||||||
|
&:hover{
|
||||||
|
background: $theme-color-second;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
section.layout-slide.no-print.single-child-datapp {
|
section.layout-slide.no-print.single-child-datapp {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
|
|
|
@ -17,6 +17,14 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="black-screen">
|
||||||
|
<div class="content">
|
||||||
|
<div data-pp='1000'></div>
|
||||||
|
<a href='javascript:;' class="close-btn">
|
||||||
|
<i class="fa fa-times"></i>
|
||||||
|
</a >
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<%= render_footer %>
|
<%= render_footer %>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue