您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

19 行
399 B

  1. import IHK from '../ihk';
  2. const $ = require('jquery');
  3. class IESupport{
  4. constructor() {
  5. const browser = IHK.getBrowser();
  6. if (browser.name === 'ie') {
  7. $('.infobanner').each((i, el) => {
  8. const ib = $(el).find('.image-box');
  9. const img = ib.find('img').hide();
  10. ib.css('background-image', 'url(' + img.attr('src') + ')');
  11. })
  12. }
  13. }
  14. }
  15. new IESupport();