{"id":28727795,"url":"https://github.com/0xzakk/postcss-easings","last_synced_at":"2026-05-10T03:14:11.024Z","repository":{"id":92774373,"uuid":"82137372","full_name":"0xZakk/PostCSS-Easings","owner":"0xZakk","description":"Custom easing functions for PostCSS! :chart_with_upwards_trend:","archived":false,"fork":false,"pushed_at":"2017-02-16T04:08:44.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-07-22T17:22:40.019Z","etag":null,"topics":["css","css-animations","css-transitions","easing-functions","easings","postcss","postcss-plugin"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xZakk.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-02-16T04:00:40.000Z","updated_at":"2023-07-22T17:22:40.797Z","dependencies_parsed_at":"2023-04-21T09:19:41.333Z","dependency_job_id":null,"html_url":"https://github.com/0xZakk/PostCSS-Easings","commit_stats":null,"previous_names":["0xzakk/postcss-easings","zakkman/postcss-easings"],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/0xZakk/PostCSS-Easings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xZakk%2FPostCSS-Easings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xZakk%2FPostCSS-Easings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xZakk%2FPostCSS-Easings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xZakk%2FPostCSS-Easings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xZakk","download_url":"https://codeload.github.com/0xZakk/PostCSS-Easings/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xZakk%2FPostCSS-Easings/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259995861,"owners_count":22943481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","css-animations","css-transitions","easing-functions","easings","postcss","postcss-plugin"],"created_at":"2025-06-15T15:15:23.465Z","updated_at":"2026-05-10T03:14:11.018Z","avatar_url":"https://github.com/0xZakk.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## PostCSS Easings\n\nCustom easing functions for PostCSS! :chart_with_upwards_trend:\n\n## Installation\n\n```javascript\nnpm install postcss-easings\n```\n\n## Usage\n\nWherever you've configured PostCSS:\n\n```javascript\nvar easings = require('postcss-easings')\n```\n\nThis:\n```css\n.ease-in-sine {\n  transition: opacity 300ms easeInSine;\n}\n\n.ease-out-sine {\n  transition-timing-function: easeOutSine;\n}\n```\n\nCompiles to:\n```css\n.ease-in-sine {\n  transition: opacity 300ms cubic-bezier(0.47, 0, 0.745, 0.715);\n}\n\n.ease-out-sine {\n  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);\n}\n```\n\n## Available Functions:\n\n* [easeInSine](http://easings.net/#easeInSine)\n* [easeOutSine](http://easings.net/#easeOutSine)\n* [easeInOutSine](http://easings.net/#easeInOutSine)\n* [easeInQuad](http://easings.net/#easeInQuad)\n* [easeOutQuad](http://easings.net/#easeOutQuad)\n* [easeInOutQuad](http://easings.net/#easeInOutQuad)\n* [easeInCubic](http://easings.net/#easeInCubic)\n* [easeOutCubic](http://easings.net/#easeOutCubic)\n* [easeInOutCubic](http://easings.net/#easeInOutCubic)\n* [easeInQuart](http://easings.net/#easeInQuart)\n* [easeOutQuart](http://easings.net/#easeOutQuart)\n* [easeInOutQuart](http://easings.net/#easeInOutQuart)\n* [easeInQuint](http://easings.net/#easeInQuint)\n* [easeOutQuint](http://easings.net/#easeOutQuint)\n* [easeInOutQuint](http://easings.net/#easeInOutQuint)\n* [easeInExpo](http://easings.net/#easeInExpo)\n* [easeOutExpo](http://easings.net/#easeOutExpo)\n* [easeInOutExpo](http://easings.net/#easeInOutExpo)\n* [easeInCirc](http://easings.net/#easeInCirc)\n* [easeOutCirc](http://easings.net/#easeOutCirc)\n* [easeInOutCirc](http://easings.net/#easeInOutCirc)\n* [easeInBack](http://easings.net/#easeInBack)\n* [easeOutBack](http://easings.net/#easeOutBack)\n* [easeInOutBack](http://easings.net/#easeInOutBack)\n\n## Thanks\nAll of these functions are taken from [http://easings.net/](http://easings.net/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xzakk%2Fpostcss-easings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xzakk%2Fpostcss-easings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xzakk%2Fpostcss-easings/lists"}