欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery实现的动态文字变化输出效果示例【附演示与demo源码下载】

程序员文章站 2022-07-22 16:41:53
本文实例讲述了jquery实现的动态文字变化输出效果。分享给大家供大家参考,具体如下: 演示效果图如下: 1、完整实例代码:

本文实例讲述了jquery实现的动态文字变化输出效果。分享给大家供大家参考,具体如下:

演示效果图如下:

jQuery实现的动态文字变化输出效果示例【附演示与demo源码下载】

1、完整实例代码:

<!doctype html public "-//w3c//dtd html 4.01 transitional//en"
"http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
 <title>jquery制作动态文字变化输出效果</title>
  <link rel="stylesheet" href="css/reset.css" rel="external nofollow" >
  <link rel="stylesheet" href="css/style.css" rel="external nofollow" >
  <link rel="stylesheet" href="css/animate.css" rel="external nofollow" >
  <script src="js/jquery.1.9.1.min.js" type="text/javascript"></script>
  <script src="js/jquery.quoterotator.min.js" type="text/javascript"></script>
  <script>
  jquery(document).ready(function($) {
    $('#words').quoterotator();
  });
  </script>
</head>
<body>
<div id="wrapper">
  <div id="words">
    <ul class="word-container">
      <li data-author="--- morrie schwartz" data-easeout="lightspeedout">
      the most important thing in life is to learn how to give out love, 
      and to let it come in. </li>
      <li data-author="">所 有 的 瞬 间 都 会 淹 没 于 时 间 的 洪 流,就 像 泪 水 消 逝 在 雨 中。 
      all those moments will be lost in time, like tears in rain.</li>
      <li data-author="" data-easeout="fadeoutdown">the animation can be 
      in random or pre-defined in the html. next quote animation will be 
      all in fadeindown. optional click to next quote and hover to pause 
      the slideshow.</li>
      <li data-author="mark twain (1835 - 1910)" data-easein="fadeindown">
      always do right. this will gratify some people and astonish the 
      rest. </li>
      <li data-author="--- susan rice, stanford university commencement, 2010" data-easeout="bounceout">
      progress is the product of human agency. things get better because 
      we make them better. things go wrong when we get too comfortable, 
      when we fail to take risks or seize opportunities. </li>
      <li data-author="--- arlo guthrie (1947 - )" data-easein="bouncein">
      you can't have a light without a dark to stick it in. </li>
      <li data-author="--- mahatma gandhi (1869 - 1948)" data-easein="lightspeedin">
      you must not lose faith in humanity. humanity is an ocean; if a few 
      drops of the ocean are dirty, the ocean does not become dirty. </li>
      <li data-author="--- abraham lincoln (1809 - 1865), (attributed)">
      when i do good, i feel good; when i do bad, i feel bad, and that is 
      my religion. </li>
      <li data-author="--- john wanamaker (1838 - 1922), (attributed)">
      half the money i spend on advertising is wasted; the trouble is i 
      don't know which half. </li>
    </ul>
    <div class="quote">
      <blockquote>
       <p class="quote-content"></p>
      </blockquote>
      <cite class="quote-author"></cite>
    </div>
  </div>
</div>
</body>
</html>

2、在线演示地址:

附:完整实例代码点击此处。

ps:这里再为大家推荐几款相关的特效工具供大家参考使用:

在线特效文字/彩色文字生成工具:

在线彩虹文字/颜色渐变文字生成工具:

在线发光字生成工具:

仿古书排版文字竖排转换工具:

更多关于jquery相关内容感兴趣的读者可查看本站专题:《jquery常用插件及用法总结》、《jquery中ajax用法总结》、《jquery表格(table)操作技巧汇总》、《jquery扩展技巧总结》、《jquery常见经典特效汇总》及《jquery选择器用法总结

希望本文所述对大家jquery程序设计有所帮助。