File tree 2 files changed +50
-6
lines changed
2 files changed +50
-6
lines changed Original file line number Diff line number Diff line change @@ -496,9 +496,9 @@ div.cus_slideshow{
496
496
497
497
/*手機殼的外框*/
498
498
.cus_slideshow .toTop .wrapcase {
499
- width : 68 % ;
499
+ width : 59 % ;
500
500
height : 100% ;
501
- margin : 0 16 % ;
501
+ margin : 0 22 % 0 19 % ;
502
502
503
503
/*background-color: rgba(255,255,255,.5);*/
504
504
}
@@ -1367,10 +1367,19 @@ div.cus_navbar{
1367
1367
margin-left : 3% ;
1368
1368
}
1369
1369
1370
+ /*-------------幻燈片04------------*/
1370
1371
1371
1372
1372
1373
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
+ }
1374
1383
1375
1384
1376
1385
@@ -1451,7 +1460,12 @@ div.cus_navbar{
1451
1460
/*background-color: rgba(0,0,0,.5);*/
1452
1461
}
1453
1462
1454
-
1463
+ /*手機殼的外框*/
1464
+ .cus_slideshow .toTop .wrapcase {
1465
+ width : 80% ;
1466
+ height : 100% ;
1467
+ margin : 0 10% 0 10% ;
1468
+ }
1455
1469
1456
1470
/*============================================*/
1457
1471
@@ -1644,7 +1658,15 @@ div.cus_slideshow{
1644
1658
1645
1659
/*----------幻燈片04------------*/
1646
1660
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
+ }
1648
1670
1649
1671
/*標題文字*/
1650
1672
.cus_slideshow ul li .step .msg label {
Original file line number Diff line number Diff line change @@ -207,12 +207,34 @@ $('div .skip ').click(function(){
207
207
// 抓手機殼的寬給CANVAS的寬
208
208
var c = document . getElementById ( 'c' ) ;
209
209
//用手機殼的0.9倍寬(為了讓CANVAS的框在手機殼內)
210
- var _caseWidth = $ ( '#aaa' ) . width ( ) ;
210
+ var _caseWidth = $ ( '#aaa' ) . width ( ) * .92 ;
211
211
var _caseHeight = $ ( '#aaa' ) . height ( ) ;
212
212
213
213
c . width = _caseWidth ;
214
214
c . height = _caseHeight ;
215
215
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
+
216
238
217
239
// 設定一個變數來存目前的木頭圖片名稱
218
240
var wood_img = null ;
You can’t perform that action at this time.
0 commit comments