about.js 879 B

12345678910111213141516171819202122232425262728293031323334
  1. $(function(){
  2. // 处理资讯详情图片变形问题
  3. $('.puic_wid').find('img').each(function(){
  4. var $that = $(this);
  5. var _alt = $that.attr('alt');
  6. if(_alt != 'code'){
  7. if(_alt != 'zixun'){
  8. $that.removeAttr('width');
  9. $that.removeAttr('height');
  10. $that.css({'display':'block','width':'100%','height':'auto'});
  11. }
  12. }
  13. // 咨询图标大小修改
  14. if (_alt == 'call') {
  15. $that.css({'display':'inline-block','width':'80px','height':'auto'});
  16. };
  17. })
  18. // v3品房海外精选----------------------------
  19. $('#demo06').navbarscroll({
  20. defaultSelect: 0 , //默认选中
  21. scrollerWidth:4,
  22. fingerClick:1,
  23. endClickScroll:function(obj){
  24. // console.log()
  25. var _Cityid=obj[0].dataset.id;
  26. $('.js_hsoe_m').hide();
  27. $('.js_hsoe_m[data-id='+ _Cityid +']').show();
  28. }
  29. });
  30. })