【解決方法】ページの読み込み Asp.net C# のちらつきの問題を解決するにはどうすればよいですか

プログラミングQA


ページの読み込み Asp.net C# のちらつきの問題を解決するにはどうすればよいですか。

XML
<meta http-equiv="Page-Enter" content="blendTrans(Duration=0)" />
    <meta http-equiv="Page-Exit" content="blendTrans(Duration=0)" />

上記のコードを書いたところ、IE 8 では問題が解決されました
しかし、mozilla Firefox (バージョン : 23.0.1) でも同じ問題が発生します。
ちらつきの問題は解決されていません。
提案してください。

解決策 1

マヒさん、こんにちは。

おそらく簡単なオプションは、JQuery と JQuery-UI を使用することです。 以下のコードで作業を開始できます。

HTML
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<meta name="author" content="Prasad P. Khandekar"/>
<meta name="owner" content="www.templatemo.com"/>
<meta name="copyright" content="www.templatemo.com"/>
<meta http-equiv="Expires" content="0"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Pragma-directive" content="no-cache"/>
<meta http-equiv="cache-directive" content="no-cache"/>
<title>My Portal</title>
<meta name="keywords" content="intranet, support, issue tracking, doducmentation, tools, eclipse" />
<meta name="description" content="A support portal for developers" />
<link href="static/css/percent-column-system-min.css" rel="stylesheet" type="text/css" />
<link href="static/css/portal.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="static/js/jquery/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="static/js/jquery/jquery-ui-1.10.3.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
    $('#mainPage').fadeIn(1000);
});
</script>
</head>
<body style="display:none;" id="mainPage">
    <div id="templatemo_wrapper">
        <div id="templatemo_sidebar">
            <div id="site_title">
                <h1><a href="http://intranet.foo.com"><img src="static/images/templatemo_logo.png" alt="logo" />
                <strong>DEV</strong>PORTAL<span><i>Innovation</i>, <b>Bank on it.</b></span></a></h1>
            </div>

        </div>
    </div>
</body>
</html>

よろしく、

コメント

タイトルとURLをコピーしました