Giter Site home page Giter Site logo

Comments (4)

nickforddev avatar nickforddev commented on June 10, 2024 1

Sorry for the lack of activity on this. I just published the TypeScript re-write of vue-freezeframe, and fixed this issue in that library. react-freezeframe is next on the list to get a TypeScript re-write, and I will fix this issue.

from freezeframe.js.

nickforddev avatar nickforddev commented on June 10, 2024

Hmm this sounds like a real bug. I am in the process of porting the project to TypeScript, and will definitely address this asap.

from freezeframe.js.

nickforddev avatar nickforddev commented on June 10, 2024

@alpezed Can you show me how you are using the ReactFreezeframe component?

from freezeframe.js.

alpezed avatar alpezed commented on June 10, 2024

Hi @nickforddesign

Here's the code my simple react component using ReactFreezeframe


/**
 * External dependencies
 */
import React, { Component } from 'react';
import ReactFreezeframe from 'react-freezeframe';

class GifPlayer extends Component {
	static slug = 'et_pb_better_gif_player';

	render() {
		const { image, on_hover, show_play } = this.props;

		const show_overlay = 'off' === on_hover && 'on' === show_play;

		if (!image) {
			return null;
		}

		return (
			<ReactFreezeframe 
				src={image}
				options={{
					trigger: 'on' === on_hover ? 'hover' : 'click',
					overlay: show_overlay ? true : false,
				}}
			/>
		);
	}
}

export default GifPlayer;

from freezeframe.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.