2

我尝试插入一些 html,同时给它一个淡入淡出的效果。这就是我试图实现它的方式,但它失败了:

<html>
<head>
<title></title>
<script src="Jquery.js">
</script>
</head>
<body>
<style type="text/css">
.container{
    background-color: red;
}
</style>
<div class="container"><img src="001.jpg" alt="sasuke"></div>

<script type="text/javascript">
(function(){
$("<p>lorem Ipsum blah blah </p>").insertAfter("img").fadeIn(1500);

})();
</script>
</body>
</html>
4

4 回答 4

9

在将元素添加到 DOM 时创建隐藏的元素,然后将其淡入:

(function(){
  var paragraph = $("<p>");
  paragraph.text("lorem Ipsum blah blah");
  paragraph.hide();
  paragraph.insertAfter("img");
  paragraph.fadeIn(1500);
})();
于 2012-12-27T18:36:33.220 回答
4

You probably have to hide it to be able to fade it in:

$(function(){
    $('<p />', {text: 'lorem Ipsum blah blah '}).hide().fadeIn(1500).insertAfter("img");
});

FIDDLE

于 2012-12-27T17:54:43.607 回答
0

Try this:

 (function(){
     $("<p style="display:none;">lorem Ipsum blah blah </p>").insertAfter("img").fadeIn(1500);
 })();
于 2012-12-27T17:57:19.657 回答
0

尝试这个;

(function(){
   $("<p>Fade in text </p>").hide().fadeIn(1500).insertAfter("img");
})();

小提琴

于 2015-07-16T22:29:55.970 回答