マウスで移動したときに、いくつかのテキスト bij を URL に置き換えて変更したいと考えています。アニメーション (CSS 用) を使用して変更できないことはわかっているため、フェードアウトを使用します。何時間も費やした後でも、なぜ機能しないのかわかりません。
また、ページの中央にある div 全体が欲しいのですが、valign などを試しましたが、どちらも機能しません。優先ではありませんが、マージントップを交換するといいでしょう
<div align="center" style="margin-top: 20%;">
<div id="change">
<p id="big">Welcome!</p>
</div>
<img src="pic.JPG" alt="Logo" width="40%" height="90"/>
</div>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$("#change").hover(
function(){
$(this).find('p').fadeOut('slow', function() {
$(this).text('<a href="Index.html">Continue</a>').fadeIn('slow');
});
},
function(){
$(this).find('p').fadeOut('slow', function() {
$(this).text('Welcome').fadeIn('slow');
});
});
</script>
THXお早めに!