1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!DOCTYPE html>
- <html>
- <head lang="en">
- <include file="./Application/Home/View/Common/head_include.html" />
- <title>赛车模拟器价格_赛车游戏外设_厦门欣富地智能科技</title>
- </head>
- <body>
- <include file="./Application/Home/View/Common/head.html" />
- <div class="main_div">
- <div id="now_buy" style="cursor: pointer;position: absolute;"></div>
- <img src="https://img.x-motion.cn/home/image/product_1.jpg">
- <img src="https://img.x-motion.cn/home/image/product/product_11.jpg">
- <img src="https://img.x-motion.cn/home/image/product/product_14.jpg">
- <img src="https://img.x-motion.cn/home/image/product/product_12.jpg">
- <img src="https://img.x-motion.cn/home/image/product/product_15.jpg">
- <img src="https://img.x-motion.cn/home/image/product_6.jpg">
- <div class="product_banner clearfix">
- <div class="product_left">
- <img src="https://img.x-motion.cn/home/image/product/product_desc_3.jpg">
- </div>
- <div class="product_right">
- <div id="product_banner" class="carousel slide" data-ride="carousel">
- <div class="carousel-inner">
- <div class="carousel-item active">
- <div>
- <img class="d-block w-100" src="https://img.x-motion.cn/home/image/product_banner_1.jpg" alt="First slide" id="first-slide">
- </div>
- </div>
- <div class="carousel-item">
- <div>
- <img class="d-block w-100" src="https://img.x-motion.cn/home/image/product_banner_2.jpg" alt="First slide" id="second-slide">
- </div>
- </div>
- <div class="carousel-item">
- <div>
- <img class="d-block w-100" src="https://img.x-motion.cn/home/image/product_banner_3.jpg" alt="First slide" id="third-slide">
- </div>
- </div>
- <div class="carousel-item">
- <div>
- <img class="d-block w-100" src="https://img.x-motion.cn/home/image/product_banner_4.jpg" alt="First slide" id="fourth-slide">
- </div>
- </div>
- <div class="carousel-item">
- <div>
- <img class="d-block w-100" src="https://img.x-motion.cn/home/image/product_banner_5.jpg" alt="First slide" id="fifth-slide">
- </div>
- </div>
- <div class="carousel-item">
- <div>
- <img class="d-block w-100" src="https://img.x-motion.cn/home/image/product_banner_6.jpg" alt="First slide" id="sixth-slide">
- </div>
- </div>
- </div>
- <a class="carousel-control-prev" href="#product_banner" role="button" data-slide="prev">
- <span class="carousel-control-prev-icon" style="background-image:url(https://img.x-motion.cn/home/image/product_banner_left.png)" aria-hidden="true"></span>
- <span class="sr-only">Previous</span>
- </a>
- </div>
- </div>
- </div>
- </div>
- <include file="./Application/Home/View/Common/footer_logo.html" />
- <include file="./Application/Home/View/Common/footer.html" />
- </body>
- <script type="text/javascript">
- $(document).ready(function () {
- window.onresize = function () {
- set_position();
- };
- $('#now_buy').on('click', function(){
- // $(".qiao-icon-user").get(0).click();
- $("#nb_icon_wrap").get(0).click();
- });
- });
- function set_position() {
- var initial_width = 1920;
- var limit_width = 1240;
- var top = 260;
- var left = 890;
- var width = 130;
- var height = 55;
- var now_width = $(window).width();
- if(now_width<limit_width){
- now_width = limit_width;
- }
- var now_buy = $('#now_buy');
- $(now_buy).css('top', top * now_width / initial_width + 64);
- $(now_buy).css('left', left * now_width / initial_width);
- $(now_buy).css('width', width * now_width / initial_width);
- $(now_buy).css('height', height * now_width / initial_width);
- }
- window.onload = function () {
- set_position();
- };
- set_position();
- </script>
- </html>
|