cssとjqueryでサイトを作っています。私のスクリプトの 1 つは、マウス クリックで特定の場所にテキストを表示することです。テキストは、Google Chrome で意図した位置に適切に表示されます。しかし、IE9 と FF17 では、意図した位置からずれています。私の背景画像は、ブラウザのウィンドウのサイズに収まるようになっています。
より良いアイデアを提供するスクリーンショットを添付しています。また、コードを書いています。ちょっとした調整が必要なだけかもしれませんが、私にはわかりません。これで私を助けてください。
chromeとIEの比較です。右のものは右のものであるクロムです。FF と IE は同じ位置に表示されます。
ありがとう
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
*Here will my script which is just simple .show and .hide functions*
});
</script>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Train of Thought</title>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin-top: 0px;
padding-top: 0px;
top: 0px;
margin-left: 0px;
padding-left: 0px;
left: 0px;
}
body {
overflow: hidden;
}
#background {width: 100%; height: 100%; display: block; position: absolute; z-index:1;}
.content {
visibility:hidden;
border-style: none;
display: block;
position: fixed;
text-align: centre;
z-index: 1;
margin-top: 40%;
background-color: transparent;
font-size:1.5em;
opacity: 0.697;
}
#thought_text{
margin-left: 25%;
margin-right: 25%;
}
<div><img id="background" alt="background" src="tot1.png"></div>
<div class="content" id="thought_text">Here goes the text<br></div>