代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Untitled Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link type="text/css" href="resources/css/reset.css" rel="Stylesheet" />
<link type="text/css" href="resources/css/default.css" rel="Stylesheet" />
<script type="text/javascript">
if (location.href.toString().indexOf('file://localhost/') == 0) {
location.href = location.href.toString().replace('file://localhost/', 'file:///');
}
</script>
<script type="text/javascript" src="resources/scripts/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="resources/scripts/player/splitter.js"></script>
<script type="text/javascript" src="resources/scripts/axutils.js"></script>
<script type="text/javascript" src="resources/scripts/player/axplayer.js"></script>
<script type="text/javascript" src="resources/scripts/messagecenter.js"></script>
<script type="text/javascript" src="data/document.js"></script>
<style type="text/css">
#outerContainer {
width:1000px;
height:1500px;
}
.vsplitbar {
width: 3px;
background: #B9B9B9;
}
#rightPanel {
background-color: White;
}
#leftPanel {
/*min-width: 190px;*/
}
.splitterMask {
position:absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-image: url(resources/images/transparent.gif);
z-index: 20000;
}
</style>
<script type="text/javascript" language="JavaScript"><!--
// isolate scope
(function() {
setUpController();
var configuration = $axure.document.configuration;
var _settings = {};
_settings.projectId = configuration.prototypeId;
_settings.isAxshare = configuration.isAxshare;
_settings.loadFeedbackPlugin = configuration.loadFeedbackPlugin;
_settings.startCollapsed = HashString("c") == "1";
if(HashString("c") == "2") closePlayer();
$axure.player.settings = _settings;
$(window).bind('load', function() {
if(CHROME_5_LOCAL && !$('body').attr('pluginDetected')) {
window.location = 'resources/chrome/chrome.html';
}
});
$(document).ready(function() {
$axure.page.bind('load.start', mainFrame_onload);
$axure.messageCenter.addMessageListener(messageCenter_message);
if($axure.player.settings.loadFeedbackPlugin) {
if($axure.player.settings.isAxshare) {
$axure.utils.loadJS('/Scripts/plugins/feedback/feedback.js');
} else {
$axure.utils.loadJS('http://share.axure.com/Scripts/plugins/feedback/feedback.js');
}
}
if(navigator.userAgent.indexOf("MSIE") >= 0) $('#outerContainer').width('100%');
initialize();
if($axure.player.settings.startCollapsed) $('#outerContainer').splitter({ sizeLeft: 0 });
else $('#outerContainer').splitter({ sizeLeft: 250 });
$('#leftPanel').width(250);
$(window).resize(function() { resizeContent(); });
$('#maximizePanelContainer').hide();
initializeLogo();
$(window).resize();
resizeContent();
//wait for ie to get to a good state and resize
if(IE && BROWSER_VERSION == "6.0") setTimeout(function() { $('#outerContainer').trigger('resize'); }, 30);
if($axure.player.settings.startCollapsed) {
collapse();
$('#leftPanel').width(0);
}
});
})();
var lastLeftPanelWidth = 250;
function messageCenter_message(message, data) {
if(message == 'expandFrame') expand();
}
function resizeContent() {
var newHeight = $(window).height();
var newWidth = $(window).width();
var controlContainerHeight = newHeight - 42;
if($('#interfaceControlFrameLogoContainer').is(':visible')) controlContainerHeight -= $('#interfaceControlFrameLogoContainer').height() + 16;
$('#outerContainer').height(newHeight).width(newWidth);
$('.vsplitbar').height(newHeight);
$('#leftPanel').height(newHeight);
$('#interfaceControlFrame').height(newHeight);
$('#interfaceControlFrameContainer').height(controlContainerHeight);
$('#rightPanel').height(newHeight);
$('#mainFrame').height(newHeight);
if($('#leftPanel').is(':visible')) $('#rightPanel').width($(window).width() - $('#leftPanel').width() - $('.vsplitbar').width());
else $('#rightPanel').width($(window).width());
}
function closePlayer() {
if($axure.page.location) window.location.href = $axure.page.location;
else {
var pageFile = getInitialUrl();
var currentLocation = window.location.toString();
window.location.href = currentLocation.substr(0, currentLocation.lastIndexOf("/") + 1) + pageFile;
}
}
function replaceHash(newHash) {
var currentLocWithoutHash = window.location.toString().split('#')[0];
//We use replace so that every hash change doesn't get appended to the history stack.
//We use replaceState in browsers that support it, else replace the location
if(typeof window.history.replaceState != 'undefined') {
try {
//Chrome 45 (Version 45.0.2454.85 m) started throwing an error here when generated locally (this only happens with sitemap open) which broke all interactions.
//try catch breaks the url adjusting nicely when the sitemap is open, but all interactions and forward and back buttons work.
//Uncaught SecurityError: Failed to execute 'replaceState' on 'History': A history state object with URL 'file:///C:/Users/Ian/Documents/Axure/HTML/Untitled/start.html#p=home' cannot be created in a document with origin 'null'.
window.history.replaceState(null, null, currentLocWithoutHash + newHash);
} catch(ex) {}
} else {
window.location.replace(currentLocWithoutHash + newHash);
}
}
function collapse() {
var currentHash = window.location.hash;
//If the collapse hash string var isn't present and set to 1, insert it
if (currentHash.indexOf('#c=1') == -1 && currentHash.indexOf('&c=1') == -1) {
var hashToSet = '';
var varIndex = currentHash.indexOf('#c=');
if (varIndex == -1) varIndex = currentHash.indexOf('&c=');
if (varIndex != -1) {
var newHash = currentHash.substring(0, varIndex);
newHash = newHash == '' ? '#c=1' : newHash + '&c=1';
var ampIndex = currentHash.indexOf('&', varIndex + 1);
if (ampIndex != -1) {
newHash = newHash + currentHash.substring(ampIndex);
}
hashToSet = newHash;
} else if (currentHash.indexOf('#') != -1) {
hashToSet = currentHash + '&c=1';
} else {
hashToSet = '#c=1';
}
if (hashToSet != '') {
replaceHash(hashToSet);
}
}
$('#maximizePanelContainer').show();
lastLeftPanelWidth = $('#leftPanel').width();
$('#leftPanel').hide();
$('.vsplitbar').hide();
$('#rightPanel').width($(window).width());
$(window).resize();
$('#outerContainer').trigger('resize');
}
function expand() {
var currentHash = self.location.hash;
var varIndex = currentHash.indexOf('&c=');
if (varIndex == -1) varIndex = currentHash.indexOf('#c=');
//If the collapse hash string var is present, remove it
if (varIndex != -1) {
var newHash = currentHash.substring(0, varIndex);
var ampIndex = currentHash.indexOf('&', varIndex + 1);
if (ampIndex != -1) {
newHash = newHash == '' ? '#' + currentHash.substring(ampIndex + 1) : newHash + currentHash.substring(ampIndex);
}
replaceHash(newHash);
}
$('#maximizePanelContainer').hide();
$('#leftPanel').width(lastLeftPanelWidth);
$('#leftPanel').show();
$('.vsplitbar').show();
$('#rightPanel').width($(window).width() - $('#leftPanel').width() - $('.vsplitbar').width());
$(window).resize();
$('#outerContainer').trigger('resize');
}
function initialize() {
var legacyQString = QueryString("Page");
if (legacyQString.length > 0) {
location.href = location.href.substring(0, location.href.indexOf("?")) + "#p=" + legacyQString;
return;
}
var mainFrame = document.getElementById("mainFrame");
mainFrame.contentWindow.location.href = getInitialUrl();
}
function getInitialUrl() {
var pageName = HashString("p");
if(pageName.length > 0) return pageName + ".html";
else {
var url = getFirstPageUrl($axure.document.sitemap.rootNodes);
return (url ? url : "about:blank");
}
}
function getFirstPageUrl(nodes) {
for (var i = 0; i < nodes.length; i++) {
var node = nodes[i];
if (node.url) return node.url;
else {
var hasChildren = (node.children && node.children.length > 0);
if (hasChildren) {
var url = getFirstPageUrl(node.children);
if (url) return url;
}
}
}
return null;
}
function initializeLogo() {
if($axure.document.configuration.logoImagePath) {
$('#interfaceControlFrameLogoImageContainer').html('<img id="logoImage" src="" />');
$('#logoImage').attr('src', $axure.document.configuration.logoImagePath).load(function() { resizeContent(); });
$('#interfaceControlFrameMinimizeContainer').css('background-color', '#FFFFFF');
} else $('#interfaceControlFrameLogoImageContainer').hide();
if ($axure.document.configuration.logoImageCaption) {
$('#interfaceControlFrameLogoCaptionContainer').html($axure.document.configuration.logoImageCaption);
$('#interfaceControlFrameMinimizeContainer').css('background-color', '#FFFFFF');
} else $('#interfaceControlFrameLogoCaptionContainer').hide();
if(!$('#interfaceControlFrameLogoImageContainer').is(':visible') && !$('#interfaceControlFrameLogoCaptionContainer').is(':visible')) {
$('#interfaceControlFrameLogoContainer').hide();
}
}
function mainFrame_onload() {
if($axure.page.pageName) document.title = $axure.page.pageName;
}
function QueryString(query) {
var qstring = self.location.href.split("?");
if(qstring.length < 2) return "";
return GetParameter(qstring, query);
}
function GetParameter(qstring, query) {
var prms = qstring[1].split("&");
var frmelements = new Array();
var currprmeter, querystr = "";
for(var i = 0; i < prms.length; i++) {
currprmeter = prms[i].split("=");
frmelements[i] = new Array();
frmelements[i][0] = currprmeter[0];
frmelements[i][1] = currprmeter[1];
}
for(j = 0; j < frmelements.length; j++) {
if(frmelements[j][0].toLowerCase() == query.toLowerCase()) {
querystr = frmelements[j][1];
break;
}
}
return querystr;
}
function HashString(query) {
var qstring = self.location.href.split("#");
if(qstring.length < 2) return "";
return GetParameter(qstring, query);
}
--></script>
<link type="text/css" rel="Stylesheet" href="plugins/sitemap/styles/sitemap.css" />
<script type="text/javascript" src="plugins/sitemap/sitemap.js"></script>
<link type="text/css" rel="Stylesheet" href="plugins/page_notes/styles/page_notes.css" />
<script type="text/javascript" src="plugins/page_notes/page_notes.js"></script>
</head>
<body scroll="no">
<div id="outerContainer">
<div id="leftPanel">
<div id="interfaceControlFrame">
<div id="interfaceControlFrameMinimizeContainer">
<a title="Minimize" id="interfaceControlFrameMinimizeButton" onclick="collapse();"> </a>
<div id="interfaceControlFrameCloseContainer">
<a title="Close" id="interfaceControlFrameCloseButton" onclick="closePlayer();"> </a>
</div>
</div>
<div id="interfaceControlFrameLogoContainer">
<div id="interfaceControlFrameLogoImageContainer"></div>
<div id="interfaceControlFrameLogoCaptionContainer"></div>
</div>
<div id="interfaceControlFrameHeaderContainer">
<ul id="interfaceControlFrameHeader">
</ul>
</div>
<div id="interfaceControlFrameContainer">
</div>
</div>
</div>
<div id="rightPanel">
<iframe id="mainFrame" name="mainFrame" width="100%" height="100%" src="" frameborder="0" style="display: block;"></iframe>
</div>
</div>
<div id="maximizePanelContainer">
<iframe id="expandFrame" src="resources/expand.html" width="100%" height="100%" scrolling="no" allowtransparency="true" frameborder="0"></iframe>
</div>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。