Linux 软件免费装
Banner图

Animated Typed JS Shortcode

开发者 yongkiagustinus
更新时间 2024年8月22日 08:21
捐献地址: 去捐款
PHP版本: 7.4 及以上
WordPress版本: 6.6
版权: GPLv2 or later
版权网址: 版权信息

标签

jQuery Shortcode Animation Typography

下载

2.1 2.1.2 1.0 1.1 2.0

详情介绍:

Create an animated typing effect with Typed.js easily. Just install and activate, Animated Typed JS Shortcode plugin and you can start using [typedjs][/typedjs] shortcode to create your animated typing text. No settings needed just plug and play. How to use the shortcode? You can use the shortcode just like this: [typedjs]My animated typing text[/typedjs] To show more than 1 string/text, separate the strings with a double colons (::) like this: [typedjs]My animated typing text::It's freaking awesome![/typedjs] If you want to customize your animated text behaviour, you can use shortcode attributes to do that like this: [typedjs loop=true]My animated typing text::It's freaking awesome!::It's now looping, OMG![/typedjs] Here are the list of all available attributes that you can use: Optimize Javascript loading The typed.min.js is only 12KB, in the previous version I tried to load the script only when the shortcode is used, but it's not working properly because the script is loaded asynchronously. So, I decided to load the script in the footer of the page to make sure it's loaded properly. However, if you want to load the script only on specific pages, you can use this hook to enqueue the script only on specific pages: php add_action('wp_enqueue_scripts', 'my_custom_typedjs_script'); function my_custom_typedjs_script() { if ( ! is_page( 'my-page-slug' ) ) { wp_dequeue_script( 'typedjsshortcode' ); } } This will dequeue the script on all pages except the page with the slug my-page-slug. CREDITS Thanks to Matt Boldt for creating this cool library Typed.js!

安装:

  1. Upload "animated-typed-js-shortcode" folder to the "/wp-content/plugins/" directory.
  2. Activate the plugin through the "Plugins" menu in WordPress.

升级注意事项:

Keep your plugin up to date to get the latest features & the best performance

常见问题:

How do i get support?

You can get support by going to Support section of this plugin page

更新日志:

2.1 Release date: July 27th, 2024 2.0 Release date: August 12th, 2023 1.1 Release date: July 22nd, 2021 1.0 Release date: March 23rd, 2020