Vuonghh1998
(Admin)
[Off] 12-08-2016 |
*.Các bạn dán code này vào đầu _header
<?php
<!--nhan-dang-may-->
Var $ki = mobile
var $ko = Nokia5130c
if not $ko==Mozilla
var $SAT=mobile
elseif $ki==web
var $SAT=web
else
var $SAT=touch
Endif
<!--/nhan-dang-may-->
get style
If $style
var $style = call cookie::set $name=style;$val=$style;$expire=31556926;$force_current=1
Endif
var $SAT = call cookie::get $name=style;$default=$SAT
?>
Copy code
<!--nhan-dang-may-->
Var $ki = mobile
var $ko = Nokia5130c
if not $ko==Mozilla
var $SAT=mobile
elseif $ki==web
var $SAT=web
else
var $SAT=touch
Endif
<!--/nhan-dang-may-->
get style
If $style
var $style = call cookie::set $name=style;$val=$style;$expire=31556926;$force_current=1
Endif
var $SAT = call cookie::get $name=style;$default=$SAT
?>
Copy code
*.Ở file bạn muốn auto wap/web thì bạn chèn code này
<?php
<!--parser:xtscript-->
if $SAT==mobile
print {{phần hiển thị giao diện máy đt java }}
elseif $SAT==web
print {{ máy tính, laptop.... }}
else
print {{ hiển thị khi dùng smartphone}}
endif
<!--/parser:xtscript-->
?>
Copy code
<!--parser:xtscript-->
if $SAT==mobile
print {{phần hiển thị giao diện máy đt java }}
elseif $SAT==web
print {{ máy tính, laptop.... }}
else
print {{ hiển thị khi dùng smartphone}}
endif
<!--/parser:xtscript-->
?>
Copy code
*.Bạn cũng có thể sử dụng gọn lẹ hơn bằng pp dùng thẻ include ...
VD: Mình file /index chứa code.
<?php
<!--parser:xtscript-->
if $SAT==mobile
include /css/mobile/index.xt
elseif $SAT==web
include /css/web/index.xt
else
include /css/touch/index.xt
endif
<!--/parser:xtscript-->
?>
Copy code
<!--parser:xtscript-->
if $SAT==mobile
include /css/mobile/index.xt
elseif $SAT==web
include /css/web/index.xt
else
include /css/touch/index.xt
endif
<!--/parser:xtscript-->
?>
Copy code
*.Các bạn cứ thiết kế 3 file ở /css/... rồi include như vậy là hay nhất. Chúc các bạn thành công!
#9 (0) |