{"id":18290076,"url":"https://github.com/skempin/jquery-text-fade-delay","last_synced_at":"2025-04-05T10:30:38.855Z","repository":{"id":57282469,"uuid":"79909469","full_name":"SKempin/jQuery-text-fade-delay","owner":"SKempin","description":"jQuery plugin to fade in blockquote elements followed by delayed cite elements.","archived":false,"fork":false,"pushed_at":"2019-01-16T15:36:11.000Z","size":300,"stargazers_count":13,"open_issues_count":0,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-10-16T11:03:13.076Z","etag":null,"topics":["css","javascript","jquery","jquery-plugin","sass"],"latest_commit_sha":null,"homepage":"https://skempin.github.io/jQuery-text-fade-delay/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SKempin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-24T12:27:22.000Z","updated_at":"2022-11-23T02:39:07.000Z","dependencies_parsed_at":"2022-08-31T04:21:55.181Z","dependency_job_id":null,"html_url":"https://github.com/SKempin/jQuery-text-fade-delay","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SKempin%2FjQuery-text-fade-delay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SKempin%2FjQuery-text-fade-delay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SKempin%2FjQuery-text-fade-delay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SKempin%2FjQuery-text-fade-delay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SKempin","download_url":"https://codeload.github.com/SKempin/jQuery-text-fade-delay/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247324322,"owners_count":20920622,"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","javascript","jquery","jquery-plugin","sass"],"created_at":"2024-11-05T14:09:20.285Z","updated_at":"2025-04-05T10:30:38.336Z","avatar_url":"https://github.com/SKempin.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jQuery Text Fade Delay\r\n\r\n[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/SKempin/jQuery-text-fade-delay/blob/master/LICENSE)\r\n[![GitHub stars](https://img.shields.io/github/stars/SKempin/jQuery-text-fade-delay.svg?style=flat-square)](https://github.com/SKempin/jQuery-text-fade-delay/stargazers)\r\n[![GitHub forks](https://img.shields.io/github/forks/SKempin/jQuery-text-fade-delay.svg?style=flat-square)](https://github.com/SKempin/jQuery-text-fade-delay/network)\r\n\r\n\r\nFade in a series of blockquote elements followed by a delayed cite elements, and simultaneously fade both out.\r\n\r\n## Demo\r\n[jQuery Text Fade Delay - Live DEMO](https://skempin.github.io/jQuery-text-fade-delay/)\r\n\r\n\r\n## Installation\r\n[node.js](http://nodejs.org/download/) is required to get ``npm``.\r\n\r\nIf you would like to download the code and try it for yourself:\r\n\r\n1. Clone the repo: `https://github.com/SKempin/jQuery-text-fade-delay.git` or `bower install jquery-text-fade-delay`\r\n2. `cd /jQuery-text-fade-delay`\r\n2. Install NPM packages: `npm install`\r\n3. Build project and launch: `gulp`\r\n4. Distilled files will be compiled into the `dist` directory\r\n\r\n\r\n## Setup\r\n\r\n1. Include the plugin dist CSS and JS files in your `\u003chead\u003e`:\r\n\r\n\t```html\r\n\t\u003clink rel=\"stylesheet\" href=\"dist/css/fader.min.css\"\u003e\r\n\t\u003cscript src=\"dist/js/fader.min.js\"\u003e\u003c/script\u003e\r\n\t```\r\n\r\n2. Use the following HTML structure:\r\n\r\n    ```html\r\n        \u003cul id=\"quotes\"\u003e\r\n            \u003cli\u003e\r\n                \u003cblockquote\u003eQuote goes here\u003c/blockquote\u003e\r\n                \u003ccite\u003eCitation goes here\u003c/cite\u003e\r\n            \u003c/li\u003e\r\n            \u003cli\u003e\r\n                \u003cblockquote\u003eSecond quote goes here\u003c/blockquote\u003e\r\n                \u003ccite\u003eCitation goes here\u003c/cite\u003e\r\n            \u003c/li\u003e\r\n        \u003c/ul\u003e\r\n    ```\r\n\r\n3. Call the plugin:\r\n\r\n    ```javascript\r\n\t$(\"#quotes\").fader({\r\n\t\tfadeSpeed: 750,     // blockquote fade in speed\r\n\t\tduration: 4000,     // duration before fading to the next blockquote\r\n\t\tciteDelay: 1500,    // delay until cite element fades in\r\n\t\tciteFadeSpeed: 1000 // cite fade in speed\r\n\t})\r\n    ```\r\n\r\n## Options\r\n\r\nSetting | Default Value | Description |\r\n------------ | ------------ |------------ |\r\nfadeSpeed | `500` | Blockquote fade in speed (ms)\r\nduration | `2000` | Duration (ms) before fading to the next blockquote\r\nciteDelay | `1200` | Delay (ms) until cite element fades in\r\nciteFadeSpeed | `750` | Cite fade in speed (ms)\r\n\r\n\r\n## Browser Support\r\n\r\n- Chrome 42+\r\n- Firefox 39+\r\n- Safari 9+\r\n- Internet Explorer 10+\r\n- Edge 14+\r\n\r\n\r\n\r\n## Author\r\n[Stephen Kempin](https://www.stephenkempin.co.uk)\r\n\r\n[SK-UK Google Play Store](https://play.google.com/store/apps/developer?id=SK+-+UK)\r\n\r\n## Licence\r\n[MIT](https://github.com/SKempin/jQuery-text-fade-delay/blob/master/LICENSE)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskempin%2Fjquery-text-fade-delay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskempin%2Fjquery-text-fade-delay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskempin%2Fjquery-text-fade-delay/lists"}