Skip to content

Commit 9f7841a

Browse files
committed
no message
1 parent d60bead commit 9f7841a

File tree

2 files changed

+50
-6
lines changed

2 files changed

+50
-6
lines changed

css/custom.css

+27-5
Original file line numberDiff line numberDiff line change
@@ -496,9 +496,9 @@ div.cus_slideshow{
496496

497497
/*手機殼的外框*/
498498
.cus_slideshow .toTop .wrapcase{
499-
width: 68%;
499+
width: 59%;
500500
height: 100%;
501-
margin:0 16%;
501+
margin:0 22% 0 19%;
502502

503503
/*background-color: rgba(255,255,255,.5);*/
504504
}
@@ -1367,10 +1367,19 @@ div.cus_navbar{
13671367
margin-left:3%;
13681368
}
13691369

1370+
/*-------------幻燈片04------------*/
13701371

13711372

13721373

1373-
1374+
/*置入(CANVAS)*/
1375+
.cus_slideshow ul li.slide04 div.case_img .insert_text{
1376+
width: 69%;
1377+
height: 50%;
1378+
position: absolute;
1379+
top: 0;
1380+
padding: 25% 14% 25% 17%; /*控制左右邊界的位置*/
1381+
display: inline-block;
1382+
}
13741383

13751384

13761385

@@ -1451,7 +1460,12 @@ div.cus_navbar{
14511460
/*background-color: rgba(0,0,0,.5);*/
14521461
}
14531462

1454-
1463+
/*手機殼的外框*/
1464+
.cus_slideshow .toTop .wrapcase{
1465+
width: 80%;
1466+
height: 100%;
1467+
margin:0 10% 0 10%;
1468+
}
14551469

14561470
/*============================================*/
14571471

@@ -1644,7 +1658,15 @@ div.cus_slideshow{
16441658

16451659
/*----------幻燈片04------------*/
16461660

1647-
1661+
/*置入(CANVAS)*/
1662+
.cus_slideshow ul li.slide04 div.case_img .insert_text{
1663+
width: 71%;
1664+
height: 45%;
1665+
position: absolute;
1666+
top: 0;
1667+
padding: 44% 17% 11% 12%; /*控制左右邊界的位置*/
1668+
display: inline-block;
1669+
}
16481670

16491671
/*標題文字*/
16501672
.cus_slideshow ul li .step .msg label{

js/custom.js

+23-1
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,34 @@ $('div .skip ').click(function(){
207207
// 抓手機殼的寬給CANVAS的寬
208208
var c=document.getElementById('c');
209209
//用手機殼的0.9倍寬(為了讓CANVAS的框在手機殼內)
210-
var _caseWidth = $('#aaa').width();
210+
var _caseWidth = $('#aaa').width()*.92;
211211
var _caseHeight =$('#aaa').height();
212212

213213
c.width=_caseWidth;
214214
c.height=_caseHeight;
215215

216+
var $window=$(window)
217+
var wdth=$window.width();
218+
219+
// 當視窗為手機大小時,執行此涵式
220+
var windowResize = function(){
221+
_caseWidth = $('#aaa').width()*1.4;
222+
c.width=_caseWidth;
223+
c.height=_caseHeight;
224+
}
225+
226+
if(wdth<768){
227+
windowResize();
228+
}
229+
230+
231+
// $window.resize(function() {
232+
// if(wdth<768){
233+
// windowResize();
234+
// console.log('yes'); }
235+
// });
236+
237+
216238

217239
// 設定一個變數來存目前的木頭圖片名稱
218240
var wood_img = null;

0 commit comments

Comments
 (0)