humanmade/lottie-lite 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

humanmade/lottie-lite

最新稳定版本:1.2.10

Composer 安装命令:

composer require humanmade/lottie-lite

包简介

A lightweight Lottie Animations Extension for WordPress

README 文档

README

Playwright Tests Lint

Adds support for Lottie animations as an enhancement to the following blocks:

  • Core image block
  • Core cover block
  • Core media & text block

Allows overlaying or replacing the image with an animation.

???? Try it on WordPress Playground

Installation

  1. Download the plugin from the GitHub repository.
  2. Upload the plugin to your site's wp-content/plugins directory.
  3. Activate the plugin from the WordPress admin.

Development

Available npm Scripts

# Build production assets npm run build # Development watch mode npm run start # Format code npm run format # Linting npm run lint:js # Check JavaScript npm run lint:css # Check CSS npm run lint:js:fix # Fix JavaScript issues npm run lint:css:fix # Fix CSS issues # Create distributable plugin ZIP npm run plugin-zip # Testing npm run playground:start # Start WordPress Playground server npm run test:e2e # Run end-to-end tests npm run test:e2e:debug # Run tests in debug mode npm run test:e2e:watch # Run tests in watch mode

The build process uses @wordpress/scripts to compile JavaScript and CSS from src/*.js into the build/ directory.

Testing

The plugin uses Playwright for end-to-end testing with WordPress Playground.

Running Tests Locally

  1. Start the WordPress Playground server (in one terminal):
npm run playground:start
  1. Run the tests (in another terminal):
npm run test:e2e

The Playground environment runs on http://localhost:9400 with WordPress 6.8, PHP 8.3, and auto-login enabled.

CI Testing

Tests run automatically on GitHub Actions using a matrix of:

  • PHP versions: 8.3, 8.4
  • WordPress versions: 6.7, 6.8, latest

This ensures compatibility across multiple PHP and WordPress versions.

Adding New Tests

Tests are located in the tests/e2e/ directory. Here's an example test:

const { test, expect } = require( '@playwright/test' ); const { Editor } = require( '@wordpress/e2e-test-utils-playwright' ); test.use( { editor: async ( { page }, use ) => { await use( new Editor( { page } ) ); }, } ); test.describe( 'Lottie Lite Plugin', () => { test.beforeEach( async ( { page } ) => { await page.goto( '/wp-admin/' ); } ); test( 'should add Lottie Animation panel to image block', async ( { page, editor, } ) => { // Navigate to create new post await page.goto( '/wp-admin/post-new.php' ); await page.getByRole( 'button', { name: 'Close' } ).click(); await editor.openDocumentSettingsSidebar(); // Insert an image block await page .locator( 'iframe[name="editor-canvas"]' ) .contentFrame() .getByRole( 'button', { name: 'Add default block' } ) .click(); await page .locator( 'iframe[name="editor-canvas"]' ) .contentFrame() .getByRole( 'document', { name: 'Empty block; start writing or' } ) .fill( '/image' ); await page .getByRole( 'option', { name: 'Image', exact: true } ) .click(); // Verify Lottie Animation panel exists await page .getByRole( 'button', { name: 'Lottie Animation Lottie Logo' } ) .click(); await expect( page.locator( '#tabs-3-settings-view' ) ).toContainText( 'Lottie Animation' ); } ); } );

For more information on writing Playwright tests, see:

Pull Request Previews

When you open or update a pull request, a workflow automatically:

  • Builds the plugin with your changes
  • Generates a unique WordPress Playground link
  • Adds a "Try it in Playground" button to your PR description

This allows reviewers to test your changes directly in their browser without any local setup required.

Advanced Usage

The plugin exposes the DotLottie web player object on the enhanced blocks. This allows you to interact with the player and control the animation.

To access the player object, you can use the following JavaScript code:

function doStuff(player) { // Do stuff with the player object } // Wait for the player to be ready as they may be loaded asynchronously, // depending on the block's visibility and whether the image is lazy-loaded. document.querySelectorAll( '[data-lottie]' ).forEach( ( element ) => { if ( element.lottie ) { doStuff( element.lottie ); } else { element.addEventListener( 'lottieReady', () => { doStuff( element.lottie ); } ); } } );

Full documentation for the DotLottie web player can be found here:

https://developers.lottiefiles.com/docs/dotlottie-player/dotlottie-web/

统计信息

  • 总下载量: 3.1k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 37
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 37
  • Watchers: 11
  • Forks: 2
  • 开发语言: JavaScript

其他信息

  • 授权协议: GPL-2.0-or-later
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固