123456789101112131415161718192021222324252627282930313233343536373839 |
- <{include file="header.html"}>
- <!--公用标题居中显示-->
- <{include file="common_header.html"}>
- <{include file="events_top.html"}>
- <{include file="events_infos.html"}>
- <script type="text/javascript">
- KISSY.use('node, cookie', function (S, Node, Cookie) {
- var $ = S.all;
-
- //视频自适应
- var screenWidth = $(window).width();
- var baseWidth = 510;
- var video_scale = screenWidth / baseWidth;
- $(".video_iframe").each(function () {
- var new_width = $(this).width() * video_scale;
- $(this).width(new_width - 20);
- var new_height = $(this).height() * video_scale;
- $(this).height(new_height - 20);
- });
-
- $(".ac_btn_box").on('click', function () {
- Cookie.set('SURVEY_IS_UNDERWAY', 2, null, '<{$smarty.server.HTTP_HOST}>', '/');
- window.location.reload();
- });
-
-
- });
- //有产品列表时添加整体body背景色
- $(body).addClass("bg_white");
- </script>
- <{include file="bottom.html"}>
|