Skip to content

Releases: MrSaints/Morphext

v2.4.4

23 May 10:26
Compare
Choose a tag to compare

Changes since v2.3.4

On the contrary to the shift in version number, no major changes were made.

The only commit made (408b7e9) addresses an incompatibility issue with Internet Explorer of version < 8. It now relies on jQuery's trim() which handles the backward compatibility.

Others

As always, please do feel free to open up an issue, make a pull request or contact me if you have any questions, issues, etc. Information should be in README.md (I am also contactable on IRC at FyreChat #sandbox channel). I have also created an Ask.fm for you to leave any questions that you may have (I do not mind answering anything unrelated to this project, e.g. HTML / CSS in general).

I have also opened up an issue with the project's roadmap for the year (see #5). It is open for contributions / suggestions!

Many thanks and happy hacking!

P.S. In case you are interested... there is a similar project called "Morphist" which does the same thing as Morphext, but it is for HTML elements. Check it out and show it some love :)

v2.3.4

14 Apr 13:25
Compare
Choose a tag to compare

Changes since v2.2.1

General

  • Moved Grunt test task to occur before minification (ebacaa8)
  • Trimmed whitespace from phrases (087facc)
  • Enabled strict mode (982a6fe)
  • Modified / simplified the phrase index counter by using modulo operator (35f25bd)
  • Added demo for complete callback (936f17f)
  • Changes to README.md (771ccdb)
  • Updated to use the latest Animate.css ~3.2.5 and jQuery ~2.1.3 (6180d5d)
  • Updated and tested the dev dependencies (d981b02)

New features

  • Added a new setting complete: a callback that is executed after an item is animated in; see README and the demo file for more information on how you can use it (087facc)

The addition of the complete option which accepts a function addresses the following issues: #3 and #6.

You can do things like decide when you would like to stop or restart the animation cycle (refer to the issues for more information).

Others

As always, please do feel free to open up an issue, make a pull request or contact me if you have any questions, issues, etc. Information should be in README.md (I am also contactable on IRC at FyreChat #sandbox channel).

I have also opened up an issue with the project's roadmap for the year (see #5). It is open for contributions / suggestions!

Many thanks and happy hacking!

P.S. In case you are interested... there is a similar project called "Morphist" which does the same thing as Morphext, but it is for HTML elements. Check it out and show it some love :)

v2.2.1

25 Sep 07:49
Compare
Choose a tag to compare

Changes since v2.0.0

General

  • Supports the latest Animate.css (v3.2.0) and jQuery (v2.1.1)
  • Removed will-change (added in v2.1.x 52920df)
  • Replaced Grunt JSHint with ESLint (7881a8b)
  • Replaced text rotation via className with innerHTML (less layout thrashing 5ce41d7)

New features

  • Added start() and stop() method (accessible via jQuery data method). Addresses #2 (976206c)

Usage example:

var morphext = $("#js-rotating").Morphext({
   animation: "rotateIn"
});
var data = morphext.data("plugin_Morphext");

// Start Morphext (autostarts by default)
data.start();

// Stop Morphext
data.stop();

v2.0.0

22 Mar 17:24
Compare
Choose a tag to compare
  • Complete refactoring to be less destructive on the DOM.
  • Added Grunt with JSHint and Uglify.

v1.1.0

22 Mar 17:26
Compare
Choose a tag to compare

Stable, legacy version.