12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- // var slideout = new Slideout({
- // 'panel': document.getElementById('y_sidebarl'),
- // 'menu': document.getElementById('y_sidebarr'),
- // 'padding': 280,
- // 'tolerance': 70,
- // 'side': 'right',
- // });
-
- // document.querySelector('.y_publicright').addEventListener('click', function() {
- // slideout.toggle();
- // document.querySelector('.y_sidebarbg').style.display="block";
- // });
- // document.querySelector('.y_sidebarbg').addEventListener('click', function() {
- // slideout.toggle();
- // this.style.display="none";
- // });
- /*
- * 楼盘预售许可证弹窗
- *
- */
- $(function(){
- var lic_id; //为了这些变量在其它地方用;
- $('.y_ckysz').on('click',function(){
- var urlstr = window.location.href;
- var searchurl = urlstr.substring(0,urlstr.indexOf('?')+1);
- // var matchdata = urlstr.match(/\.com(\/\w+)/)[1];
- var $that = $(this);
- var height = $('.y_licence').outerHeight();
- var width = $('.y_licence').outerWidth();
- CreatePopLayerDivlp(width,width,'/public/licence');
- $('#offDivlp').css({'top':height+'px'}).animate({top:'20%'})
- // 向弹窗传数据
- parent.lic_id = $that.attr('data-id'); //把楼盘名称传向父级
- })
- // 看房定制数量修改
- var random = Math.floor(Math.random()*150+101);
- // console.log(random)
- $('.y_lpkfdz_dzrs span em').html(random)
- // 项目介绍、展开及收缩
- $('.font-more .w-more').on('click',function(){
- var isClass = $('.w-font').hasClass('on');
- if(isClass){
- $('.w-font').removeClass('on');
- $('.font-more .w-more').html('展开');
- }else {
- $('.w-font').addClass('on');
- $('.font-more .w-more').html('收起');
- }
- })
- })
- //创建一个弹出层,width 宽度,height 高度,url
- function CreatePopLayerDivlp(width,height,url){
- var Iheight=$(window).outerHeight();
- var Iwidth =$(window).outerWidth();
- var heights = height || 300;
- var widths = width || 500;
- var Oheight= (Iheight -heights) / 2;
- var Owidth = (Iwidth - widths) /2;
- var div ='<div id="InDivlp" style="width:'+Iwidth+'px;height:'+Iheight+'px;background:rgba(0,0,0,0.6);position:fixed;z-index:10000;top:0;left:0;">';
- div+='<div id="offDivlp" style=" width:100%; height:100%; left:0px; top:30%; position:fixed;z-index:100003;">';
- div+='<div id="Contentlp"></div>';
- div+='</div>';
- div+='</div>';
- $(document.body).append(div);
- if(url != ""){
- $("#Contentlp").load(url);
- }
- }
- //移除弹出层
- function RemoveDiv1(){
- $("#InDivlp").remove();
- $("#offDivlp").remove();
- }
- function btnCloses1(){
- RemoveDiv1();
- }
|