Axure9生成html后在chrome浏览器无法正常打开的解决方法

第一步:找到路径:resourcesscriptsplayeraxplayer.js

找到这以下代码删除掉

if (CHROME_5_LOCAL && !$('body').attr('pluginDetected')) {
 
window.location = 'resources/chrome/chrome.html';
 
}

第二步:找到路径:resourcescssdefault.css

将下面的opacity设置为:1 !importan

#mainPanel {
    background-color: #d8d8d8;
    opacity: 0;
    flex: 1;
}
原文地址:https://www.cnblogs.com/toggle/p/14447682.html