菜鸟教程小白 发表于 2022-12-12 13:09:01

ios - 网络动画 ionic 2 iOS


                                            <p><p>如何让 web 动画在 ionic 2 for iOS 中运行?我看过关于 web 动画 polyfill 的讨论,但是还没有找到一个易于遵循的实现指南。任何帮助,将不胜感激。谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>就像您在 <a href="https://angular.io/docs/ts/latest/guide/animations.html" rel="noreferrer noopener nofollow">Angular2 docs</a> 中看到的一样</p>

<blockquote>
<p>Angular animations are built on top of the standard Web Animations API
and run natively on browsers that support it.
For other browsers, a polyfill is required. Grab web-animations.min.js
from GitHub and add it to your page.</p>
</blockquote>

<p>所以复制 <a href="https://rawgit.com/web-animations/web-animations-js/master/web-animations.min.js" rel="noreferrer noopener nofollow">web-animations js code</a>并将其粘贴到一个新文件中,例如,在 <code>assets/js</code>(新文件夹)中。</p>

<p>然后将其添加到 <code>index.html</code> 文件中,作为正文中的第一个脚本标记:</p>

<pre><code>&lt;body&gt;

&lt;!-- Ionic&#39;s root component and where the app will load --&gt;
&lt;ion-app&gt;&lt;/ion-app&gt;

&lt;!-- Web Animations polyfill --&gt;
&lt;script src=&#34;assets/js/web-animations.js&#34;&gt;&lt;/script&gt;

&lt;!-- The polyfills js is generated during the build process --&gt;
&lt;script src=&#34;build/polyfills.js&#34;&gt;&lt;/script&gt;

&lt;!-- The bundle js is generated during the build process --&gt;
&lt;script src=&#34;build/main.js&#34;&gt;&lt;/script&gt;

&lt;/body&gt;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 网络动画 ionic 2 iOS,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/42681361/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/42681361/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 网络动画 ionic 2 iOS