{"id":22484593,"url":"https://github.com/kristofferandreasen/wickedCSS","last_synced_at":"2025-08-02T17:33:21.571Z","repository":{"id":35144390,"uuid":"39365394","full_name":"kristofferandreasen/wickedCSS","owner":"kristofferandreasen","description":"A library for CSS3 animations. The animations are more vibrant than most simple animations.","archived":false,"fork":false,"pushed_at":"2019-10-31T12:53:30.000Z","size":1308,"stargazers_count":357,"open_issues_count":3,"forks_count":52,"subscribers_count":12,"default_branch":"master","last_synced_at":"2024-06-17T15:52:21.763Z","etag":null,"topics":["animation","animation-library","css"],"latest_commit_sha":null,"homepage":"http://kristofferandreasen.github.io/wickedCSS/","language":"HTML","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/kristofferandreasen.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":"2015-07-20T05:45:49.000Z","updated_at":"2024-05-13T15:21:04.000Z","dependencies_parsed_at":"2022-08-18T00:01:12.440Z","dependency_job_id":null,"html_url":"https://github.com/kristofferandreasen/wickedCSS","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/kristofferandreasen%2FwickedCSS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kristofferandreasen%2FwickedCSS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kristofferandreasen%2FwickedCSS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kristofferandreasen%2FwickedCSS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kristofferandreasen","download_url":"https://codeload.github.com/kristofferandreasen/wickedCSS/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228499901,"owners_count":17929981,"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":["animation","animation-library","css"],"created_at":"2024-12-06T17:11:11.942Z","updated_at":"2025-08-02T17:33:21.553Z","avatar_url":"https://github.com/kristofferandreasen.png","language":"HTML","funding_links":[],"categories":["HTML"],"sub_categories":[],"readme":"# wickedCSS\nA library for CSS3 animations.\n\nThe animations include regular CSS3 animations to be used in all settings. \nAdditionally, the library includes a number of wicked animations, which aren't applicable in all situations.\nThey can be fun to play with.\n\nFor examples and documentation [View Project Page](http://kristofferandreasen.github.io/wickedCSS/).\n\n# Usage\n\nTo use the library, simply download and link to the file in your header.\n\n    \u003clink rel=\"stylesheet\" href=\"wickedcss.min.css\"/\u003e\n    \nOr the non-minified version.\n\n    \u003clink rel=\"stylesheet\" href=\"wickedcss.css\"/\u003e\n    \nSimply add the animation class to your element and it will perform your wicked animation.\n\n    \u003cdiv class=\"barrelRoll\"\u003e Place your content here \u003c/div\u003e\n    \nIn this case, the contents of the div will perform the barrelRoll animation. All the classes can be found on the [Project Page](http://kristofferandreasen.github.io/wickedCSS/).\n\nThe classes can be applied to all elements including images.\n\n    \u003cimg src=\"images/mushroom.png\" class=\"spinner\"/\u003e\n\n##### Classes\n\n- floater\n- barrelRoll\n- rollerRight\n- rollerLeft\n- heartbeat\n- pulse\n- rotation\n- sideToSide\n- zoomer\n- zoomerOut\n- spinner\n- wiggle\n- shake\n- pound\n- slideUp\n- slideDown\n- slideRight\n- slideLeft\n- fadeIn\n- fadeOut\n- rotateInRight\n- rotateInLeft\n- rotateIn\n- bounceIn\n\n# Customizations\n\n##### Show on scroll\nIn order to show the animations on scroll, the library can be integrated with [wow.js](http://mynameismatthieu.com/WOW/).\nThe animation will fire when the element enters the screen. Remember to include jQuery before wow.js like so:\n    \n*Jquery with local fallback:*\n\n    \u003cscript src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js\"\u003e\u003c/script\u003e\n    \u003cscript\u003ewindow.jQuery || document.write('\u003cscript src=\"js/vendor/jquery-1.11.3.min.js\"\u003e\u003c\\/script\u003e')\u003c/script\u003e\n    \n*wow.js*  \n\n    \u003cscript src=\"js/wow.min.js\"\u003e\u003c/script\u003e\n    \u003cscript\u003e\n    new WOW().init();\n    \u003c/script\u003e\n\nIt can be used like this:\n\n    \u003cdiv class=\"wow barrelRoll\"\u003e Content to Reveal Here \u003c/div\u003e\n    \n##### Show on scroll - Alternative\nThe animation can alternatively be triggered at a specific position. In this example it will be triggered when the element is 450 pixels from the top of the screen.\n\n```javascript\n    \u003cscript\u003e\n    \t$(window).scroll(function() {\n    \t\t$('#animatedElement').each(function(){\n    \t\tvar imagePos = $(this).offset().top;\n    \n    \t\tvar topOfWindow = $(window).scrollTop();\n    \t\t\tif (imagePos \u003c topOfWindow+450) {\n    \t\t\t\t$(this).addClass(\"barrelRoll\");\n    \t\t\t}\n    \t\t});\n    \t});\n    \u003c/script\u003e\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkristofferandreasen%2FwickedCSS","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkristofferandreasen%2FwickedCSS","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkristofferandreasen%2FwickedCSS/lists"}