123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telephone=no">
- <title>我的-关注产品</title>
- <script src="./lib/flexible.js"></script>
- <link rel="stylesheet" href="./lib/flexible.css">
- <link rel="stylesheet" href="./lib/swiper-4.3.2.min.css" />
- <link rel="stylesheet" href="./css/basem.css">
- <link rel="stylesheet" href="./css/public.css">
- <link rel="stylesheet" href="./css/index.css">
- <link rel="stylesheet" href="css/logome.css">
- </head>
- <body>
- <div class="titbox blubg">
- <a class="titreturn fl" href="#"><img src="img/fanhui16@2x.png" alt=""></a>
- <h1>关注产品</h1>
- <a href="#" class="check attenManage">
- <span class="smtxt">管理</span>
- </a>
- </div>
- <!-- 房产推介 -->
- <div class="referrals top50">
- <ul>
- <li>
- <a href="#">
- <label class="mycheck hide">
- <input type="checkbox" value="1" value="" />
- <div class="option"></div><!--该div盛放的是优化后的按钮图片-->
- </label>
- <div class="referinfo">
- <img src="./img/house.png" alt="">
- <div class="referCont">
- <p class="refertit">东旭御山湖</p>
- <p>
- <span class="designation graytxt">云南昆明</span>
- <span class="commission">佣金:1.22%</span>
- </p>
- <p>
- <span class="designation graytxt">售价:</span>
- <span class="price">20000元/m²</span>
- </p>
- </div>
- </div>
- </a>
- <div class="buy">
- <a href="#" class="buyt">我要推介</a>
- </div>
- </li>
- <li>
- <a href="#">
- <label class="mycheck hide">
- <input type="checkbox" value="1" value="" />
- <div class="option"></div><!--该div盛放的是优化后的按钮图片-->
- </label>
- <div class="referinfo">
- <img src="./img/house.png" alt="">
- <div class="referCont">
- <p class="refertit">东旭御山湖</p>
- <p>
- <span class="designation graytxt">云南昆明</span>
- <span class="commission">佣金:1.22%</span>
- </p>
- <p>
- <span class="designation graytxt">售价:</span>
- <span class="price">20000元/m²</span>
- </p>
- </div>
- </div>
- </a>
- <div class="buy">
- <a href="#" class="buyt">我要推介</a>
- </div>
- </li>
-
-
- </ul>
-
- </div>
-
-
- </body>
- <script src="lib/swiper-4.3.2.min.js"></script>
- <script type="text/javascript" src="./lib/jquery.min.js">
- </script>
- <script type="text/javascript" src="./js/public.js"></script>
- <script type="text/javascript">
- $(".check").click(function(){
- $(".mycheck").removeClass("hide");
- $(this).find("span").html("批量推介");
- })
- </script>
- </html>
|