为了账号安全,请及时绑定邮箱和手机立即绑定

Textillate JS-JQuery 动画不是选中的(而且总是一样的)

Textillate JS-JQuery 动画不是选中的(而且总是一样的)

撒科打诨 2022-11-27 16:16:30
我正在使用textillate.js为文本添加动画。我的 html 页面看起来像这样<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>Textillate</title>    <link rel="stylesheet" href="animate.min.css">    <script src="jquery-3.5.1.min.js"></script>    <script src="jquery.lettering.js"></script>    <script src="jquery.textillate.js"></script></head><body>    <div class="tlt">        Hello world    </div>        <script>        $('.tlt').textillate({ in: { effect: 'bounceInDown' } });    </script></body></html>其中包含的脚本和 css 取自以下链接:https://raw.githubusercontent.com/jschr/textillate/master/jquery.textillate.jshttps://code.jquery.com/jquery-3.5.1.min.jshttps://raw.githubusercontent.com/davatron5000/Lettering.js/master/jquery.lettering.jshttps://raw.githubusercontent.com/animate-css/animate.css/master/animate.min.css问题是,无论我effect在in对象中设置什么,结果总是默认的 textillate 动画:字符从左到右一个接一个地出现,我可以控制出现字母的顺序(例如设置shuffle: true等。 ),但不是动画类型。这几乎是 textillate 在他的 github 页面上提供的示例代码,所以我不知道问题出在哪里。
查看完整描述

1 回答

?
翻翻过去那场雪

TA贡献2065条经验 获得超13个赞

我认为问题与 animate.css 参考有关,我更改它并且它有效。希望能帮助到你。


    $('.tlt').textillate({ in: { effect: 'flipInY' } });


    $('.tlt2').textillate({ in: { effect: 'rollIn' } });


    $('.tlt3').textillate({"loop":true,"in":{"effect":"fadeInDownBig","shuffle":false,"reverse":false,"sync":false},"out":{"effect":"hinge","shuffle":true,"reverse":false,"sync":false}});

<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.compat.css" rel="stylesheet"/>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/lettering.js/0.6.1/jquery.lettering.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/textillate/0.4.0/jquery.textillate.js"></script>


<div class="tlt">

        Hello world

</div>



<div class="tlt2" >

        Hello world

</div>



<div class="tlt3" >

        Hello world

</div>


查看完整回答
反对 回复 2022-11-27
  • 1 回答
  • 0 关注
  • 168 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信