Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by jazzIIIlove
at 2024-10-28 05:24:23
Point:500 Replies:5 POST_ID:828766USER_ID:11670
Topic:
Cascading Style Sheets (CSS);Web Browsers;Programming for ASP.NET
Hi,
I am having a problem with IE 9, flickering when transition in page. What to do? css tricks?
Transition is clicking a tab "in" the page, and it flickers. I stop addons and tick software rendering in internet options.
What to do? Any css tricks?
Regards.
I am having a problem with IE 9, flickering when transition in page. What to do? css tricks?
Transition is clicking a tab "in" the page, and it flickers. I stop addons and tick software rendering in internet options.
What to do? Any css tricks?
Regards.
Author: jazzIIIlove replied at 2024-11-12 07:31:18
solved
Author: jazzIIIlove replied at 2024-11-07 02:51:16
didn't solve the problem ie 9 is still flickering..
Accepted Solution
Expert: duncanb7 replied at 2024-11-01 05:08:19
500 points EXCELLENT
What you can do in aternative way is that on every page you can do following
code with display:none and display:block by javascript code and CSS.
Probably it will solve you issue to tkae out the flicker effect
<html>
<script>
body{
display:none;
}
<style>
</style>
function init(){
document.getElementById('bodyid').style.display="block";
}
</script>
<body id="bodyid" onload="javascript:init();">
<!---- your html code heree--->
</body>
</html>
code with display:none and display:block by javascript code and CSS.
Probably it will solve you issue to tkae out the flicker effect
<html>
<script>
body{
display:none;
}
<style>
</style>
function init(){
document.getElementById('bodyid').style.display="block";
}
</script>
<body id="bodyid" onload="javascript:init();">
<!---- your html code heree--->
</body>
</html>
Author: jazzIIIlove replied at 2024-10-29 01:04:14
Hi,
It is intranet based, but i will post html and css render of it.
Regards.
It is intranet based, but i will post html and css render of it.
Regards.
Expert: COBOLdinosaur replied at 2024-10-28 11:33:58
Post a link to the page so we can see what you have.
Cd&
Cd&