I have been using the typewriter.js effect for a while. Works great. now I want to use it with a unodered list (ul), but if I use any tags, the effect does not want to work. Any help?

我一直在使用typewriter.js效果。效果很好。现在我想将它与未经编辑的列表(ul)一起使用,但是如果我使用任何标签,效果就不会起作用了。有帮助吗?

Heres the js script I'm working with: http://www.dynamicdrive.com/dynamicindex10/text5.htm

下面是我正在使用的js脚本:http://www.dynamicdrive.com/dynamicindex10/text5.htm

Example:

With the example javascript from link and this:

使用链接中的示例javascript和此:

<p id="aboutskills">Windows 2008 Servers</p>
<script type="text/javascript">

        new TypingText(document.getElementById("aboutskills"));

        TypingText.runAll();
        </script>  

This works!

But this:

      <p id="aboutskills">
            <ul class="skills">
                <li>Windows 2008 Servers</li>
                <li>Network Analysis</li>
                <li>Bash, Batch, Powershell scripting</li>
                <li>C#, VB .Net</li>
            </ul>
      <p>

    <script type="text/javascript">

    new TypingText(document.getElementById("aboutskills"));

    TypingText.runAll();
    </script>

Does NOT Work!

不起作用!

1 个解决方案

#1


The problem is because you can't have <ul> element inside <p>.

问题是因为

中没有

    元素。

If you inspect your HTML in Chrome DevTools or Firebug you should see something like this (BTW you have no </p>):

如果您在Chrome DevTools或Firebug中检查HTML,您会看到类似这样的内容(顺便说一句,您没有 ):

<p id="aboutskills"></p>
<ul class="skills">
    <li>Windows 2008 Servers</li>
    <li>Network Analysis</li>
    <li>Bash, Batch, Powershell scripting</li>
    <li>C#, VB .Net</li>
</ul>
<p></p>

Read more here: https://developers.whatwg.org/grouping-content.html#the-p-element

在此处阅读更多内容:https://developers.whatwg.org/grouping-content.html#the-p-element

So, you can just change <p> into <div> and everything will work properly: http://jsfiddle.net/8cd88fn0/

所以,您可以将

更改为

,一切都会正常运行:http://jsfiddle.net/8cd88fn0/

更多相关文章

  1. 为什么我的DIV小于其内容?
  2. 使用xpath查找包含特定内容的span
  3. PDA调用接口 提示:客户端发现响应内容的类型为“text/html;charse
  4. 如何在动态创建的HTML标签内容中避免单引号?
  5. JS和JQuery中如何获取和修改控件显示内容(如lable,div,h1)
  6. 2个div内容交换不用innerHTML似乎办不到?
  7. HTML+CSS实现审核流程步骤效果
  8. 我使用生成html文件的python制作了一个脚本。如何使用Web爬网程
  9. 如何截取html的子字符串作为内容摘要

随机推荐

  1. Android获取OAID设备标识
  2. Android 获取imei号码,获取手机型号和系统
  3. Android消息机制之三---Message
  4. Android 多国语言文件夹
  5. Android 设置让EditText不自动获取焦点
  6. Android Studio添加aar依赖的两种方式
  7. Android PureMVC
  8. Android Gradle Plugin指南(三)——依赖关
  9. 使用air进行移动app开发常见功能和问题(二
  10. Android中ProgressDialog的简单示例