定时文本交换?

发布于 2024-11-18 15:58:17 字数 116 浏览 5 评论 0原文

是否可以用 javascript/jQuery 交换一段文本? 我想要一个大约 5 秒的延迟计时器,然后文本应该切换到其他内容,例如图像幻灯片。淡入淡出或效果会很棒,但无论怎样都可以。你能指出我正确的方向或帮助我吗?

is it possible to swap a paragraph of text with javascript/jQuery?
I want a delay timer of about 5 seconds, and then the text should swap to something else, like a image slide. Would be awesome with a fade or an effect, but whatever works. Can you please point me in the right direction or help me out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

明媚殇 2024-11-25 15:58:17

以下是如何在不使用 setTimeout 或 setInterval 的情况下循环

DEMO HERE

<div id="textMessage"></div>
<div class="textContent" style="display:none">Lorem ipsum dolor sit amet</div>
<div class="textContent" style="display:none">In sit amet diam et arcu aliquam tincidunt. </div>

function slide() {
  if (cnt>=texts.length) cnt=0;
  $('#textMessage').html(texts[cnt++]);
  $('#textMessage')
    .fadeIn('slow').animate({opacity: 1.0}, 3000).fadeOut('slow',
     function() {
       return slide()
     }
  );      
}      
$(document).ready(function() {
  // save the texts in an array for re-use
  $(".textContent").each(function() {
    texts[cnt++]=$(this).text();
  });
  slide()  
});

Here is how to loop without setTimeout or setInterval

DEMO HERE

<div id="textMessage"></div>
<div class="textContent" style="display:none">Lorem ipsum dolor sit amet</div>
<div class="textContent" style="display:none">In sit amet diam et arcu aliquam tincidunt. </div>

function slide() {
  if (cnt>=texts.length) cnt=0;
  $('#textMessage').html(texts[cnt++]);
  $('#textMessage')
    .fadeIn('slow').animate({opacity: 1.0}, 3000).fadeOut('slow',
     function() {
       return slide()
     }
  );      
}      
$(document).ready(function() {
  // save the texts in an array for re-use
  $(".textContent").each(function() {
    texts[cnt++]=$(this).text();
  });
  slide()  
});
空名 2024-11-25 15:58:17
setTimeout(function() {
  $('#target').html('New Text');
}, 5000); // <- 5 seconds

如果你想更进一步

setInterval(function() {
  // do some change that will happen every 5 seconds
}, 5000); // <- 5 seconds
setTimeout(function() {
  $('#target').html('New Text');
}, 5000); // <- 5 seconds

and if you want to take it further

setInterval(function() {
  // do some change that will happen every 5 seconds
}, 5000); // <- 5 seconds
梦在深巷 2024-11-25 15:58:17

给你

你也可以使用setTimeout调用该函数

编辑

这里是调整后的演示,没有点击,有间隔

编辑2

复制粘贴代码在这里以防万一jsfiddle 宕机了。

<div class="texts">
  <p class="text text_1">text 1</p>
  <p class="text text_2">text 2</p>  
</div>

<script>
  setInterval(function(){
    var toggle = $(".text").hasClass("toggled");
    $(".text_1").animate({opacity: toggle ? 1 : 0});
    $(".text_2").animate({opacity: toggle ? 0 : 1});
    $(".text").toggleClass("toggled");
  }, 1000);
</script>

<style type="text/css">
.texts {
    position: relative;
}

.text {
    position: absolute;
    top: 0;
    left: 0;
}

.text_1{
    opacity: 1
}

.text_2{
   opacity: 0;
}
</style>

Here you go

You can call the function with setTimeout as well

Edit:

Here is the tweaked demo, without a click and with interval

Edit 2:

Copy pasted the code here in case jsfiddle goes down.

<div class="texts">
  <p class="text text_1">text 1</p>
  <p class="text text_2">text 2</p>  
</div>

<script>
  setInterval(function(){
    var toggle = $(".text").hasClass("toggled");
    $(".text_1").animate({opacity: toggle ? 1 : 0});
    $(".text_2").animate({opacity: toggle ? 0 : 1});
    $(".text").toggleClass("toggled");
  }, 1000);
</script>

<style type="text/css">
.texts {
    position: relative;
}

.text {
    position: absolute;
    top: 0;
    left: 0;
}

.text_1{
    opacity: 1
}

.text_2{
   opacity: 0;
}
</style>
鱼忆七猫命九 2024-11-25 15:58:17
function changeText(){
     document.getElementById('my_div_id').innerHTML = 'text_to_display';
}

您可以实现changetext以拥有一个字符串数组,您可以在下一个函数中对其进行迭代:

function timingex( ){
    setTimeout("changeText()",5000);
}
function changeText(){
     document.getElementById('my_div_id').innerHTML = 'text_to_display';
}

you can implement changetext to have an array of strings on which you iterate inside the next function:

function timingex( ){
    setTimeout("changeText()",5000);
}
泪冰清 2024-11-25 15:58:17

将您想要淡入的内容(我们可以将其命名为 #box)放在

的顶部。使用 display:none; 隐藏它。
然后使用例如:

function() {
    $("#box").delay(5000).fadeIn("slow");
}

Put your content, that you want to fade in (we can name it #box), right on top of the <p>. Hide it with display:none;.
Then use for example:

function() {
    $("#box").delay(5000).fadeIn("slow");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文