fix(#I12YF5): 禁止加载时呈现动画

#Comment
comment #I12YF5
默认禁止一切动画,网页元素渲染完毕后由 js 脚本开启动画效果

#Issue
close #I12YF5
This commit is contained in:
Argo Zhang 2019-10-05 22:53:39 +08:00
parent 125660bf8a
commit 5d6b2d531d
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
3 changed files with 8 additions and 1 deletions

View File

@ -13,7 +13,7 @@
<link href="../css/IE8.css" rel="stylesheet" />
<![endif]-->
</head>
<body>
<body class="trans-mute">
<!--[if lt IE 10 ]>
<div id="ieAlert" class="alert alert-danger alert-dismissible">
<div>当前浏览器版本太低不支持本系统请升级到至少IE10 <a href="../browser/IE10.exe" target="_blank">本地下载</a> <a href="https://support.microsoft.com/zh-cn/help/17621/internet-explorer-downloads" target="_blank">微软下载</a>或者使用Chrome浏览器 <a href="../browser/ChromeSetup.exe" target="_blank">本地下载</a></div>

View File

@ -1,4 +1,8 @@
/*Title*/
body.trans-mute * {
transition: none !important;
}
.header {
border-bottom: 1px solid #ddd;
padding: 0 15px;

View File

@ -167,6 +167,9 @@
})(jQuery);
$(function () {
// enable animoation effect
$('body').removeClass('trans-mute');
// 自动锁屏功能
var mousePosition = { screenX: 0, screenY: 0 };
var count = 1;