diff --git a/animated_snippet/README.rst b/animated_snippet/README.rst new file mode 100644 index 000000000..4c8854dbf --- /dev/null +++ b/animated_snippet/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Animated Snippets +================= +* Variety of animated snippets for the website. + +Installation +============ + - www.odoo.com/documentation/16.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: +Harshad(v16) @ cybrosys + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ + diff --git a/animated_snippet/__init__.py b/animated_snippet/__init__.py new file mode 100644 index 000000000..daaf2607d --- /dev/null +++ b/animated_snippet/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Ahammed Harshad() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# diff --git a/animated_snippet/__manifest__.py b/animated_snippet/__manifest__.py new file mode 100644 index 000000000..79f7e1268 --- /dev/null +++ b/animated_snippet/__manifest__.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Ahammed Harshad() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': "Animated Snippets", + 'version': '16.0.1.0.0', + 'summary': """Animated Snippets for Websites.""", + 'description': """Variety of Snippets With Animations to Beautify your Website.""", + 'author': "Cybrosys Techno Solutions", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'category': 'Website', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'website', 'web_editor'], + 'data': [ + 'views/snippets/snippets.xml', + 'views/snippets/a_features_01_templates.xml', + 'views/snippets/a_columns_templates.xml', + 'views/snippets/a_image_gallery_templates.xml', + 'views/snippets/a_features_02_templates.xml', + 'views/snippets/a_features_03_templates.xml', + 'views/snippets/a_features_04_templates.xml', + 'views/snippets/a_color_blocks_templates.xml', + 'views/snippets/a_features_05_templates.xml', + 'views/snippets/a_features_06_templates.xml', + 'views/snippets/a_features_07_templates.xml', + 'views/snippets/a_features_templates.xml', + 'views/snippets/a_showcase_templates.xml', + 'views/snippets/a_features_08_templates.xml', + 'views/snippets/a_features_09_templates.xml', + 'views/snippets/a_numbers_templates.xml', + 'views/snippets/a_product_list_templates.xml', + ], + 'assets': { + 'web.assets_frontend': [ + '/animated_snippet/static/src/css/a_features.css', + '/animated_snippet/static/src/css/a_color_blocks.css', + '/animated_snippet/static/src/css/a_columns.css', + '/animated_snippet/static/src/css/a_features_01.css', + '/animated_snippet/static/src/css/a_features_02.css', + '/animated_snippet/static/src/css/a_features_03.css', + '/animated_snippet/static/src/css/a_features_04.css', + '/animated_snippet/static/src/css/a_features_05.css', + '/animated_snippet/static/src/css/a_features_06.css', + '/animated_snippet/static/src/css/a_features_07.css', + '/animated_snippet/static/src/css/a_features_08.css', + '/animated_snippet/static/src/css/a_features_09.css', + '/animated_snippet/static/src/css/a_image_gallery.css', + '/animated_snippet/static/src/css/a_numbers.css', + '/animated_snippet/static/src/css/a_product_list.css', + '/animated_snippet/static/src/css/a_showcase.css', + ]}, + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/animated_snippet/doc/RELEASE_NOTES.md b/animated_snippet/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..31467b119 --- /dev/null +++ b/animated_snippet/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 12.06.2023 +#### Version 16.0.1.0.0 +#### ADD + +- Initial Commit for Animated Snippets \ No newline at end of file diff --git a/animated_snippet/static/description/assets/cybro-icon.png b/animated_snippet/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/animated_snippet/static/description/assets/cybro-icon.png differ diff --git a/animated_snippet/static/description/assets/cybro-odoo.png b/animated_snippet/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/animated_snippet/static/description/assets/cybro-odoo.png differ diff --git a/animated_snippet/static/description/assets/h2.png b/animated_snippet/static/description/assets/h2.png new file mode 100644 index 000000000..25a0b26f5 Binary files /dev/null and b/animated_snippet/static/description/assets/h2.png differ diff --git a/animated_snippet/static/description/assets/icons/check.png b/animated_snippet/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/animated_snippet/static/description/assets/icons/check.png differ diff --git a/animated_snippet/static/description/assets/icons/chevron.png b/animated_snippet/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/animated_snippet/static/description/assets/icons/chevron.png differ diff --git a/animated_snippet/static/description/assets/icons/cogs.png b/animated_snippet/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/animated_snippet/static/description/assets/icons/cogs.png differ diff --git a/animated_snippet/static/description/assets/icons/consultation.png b/animated_snippet/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/animated_snippet/static/description/assets/icons/consultation.png differ diff --git a/animated_snippet/static/description/assets/icons/ecom-black.png b/animated_snippet/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/animated_snippet/static/description/assets/icons/ecom-black.png differ diff --git a/animated_snippet/static/description/assets/icons/education-black.png b/animated_snippet/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/animated_snippet/static/description/assets/icons/education-black.png differ diff --git a/animated_snippet/static/description/assets/icons/hotel-black.png b/animated_snippet/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/animated_snippet/static/description/assets/icons/hotel-black.png differ diff --git a/animated_snippet/static/description/assets/icons/license.png b/animated_snippet/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/animated_snippet/static/description/assets/icons/license.png differ diff --git a/animated_snippet/static/description/assets/icons/lifebuoy.png b/animated_snippet/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/animated_snippet/static/description/assets/icons/lifebuoy.png differ diff --git a/animated_snippet/static/description/assets/icons/manufacturing-black.png b/animated_snippet/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/animated_snippet/static/description/assets/icons/manufacturing-black.png differ diff --git a/animated_snippet/static/description/assets/icons/pos-black.png b/animated_snippet/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/animated_snippet/static/description/assets/icons/pos-black.png differ diff --git a/animated_snippet/static/description/assets/icons/puzzle.png b/animated_snippet/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/animated_snippet/static/description/assets/icons/puzzle.png differ diff --git a/animated_snippet/static/description/assets/icons/restaurant-black.png b/animated_snippet/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/animated_snippet/static/description/assets/icons/restaurant-black.png differ diff --git a/animated_snippet/static/description/assets/icons/service-black.png b/animated_snippet/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/animated_snippet/static/description/assets/icons/service-black.png differ diff --git a/animated_snippet/static/description/assets/icons/trading-black.png b/animated_snippet/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/animated_snippet/static/description/assets/icons/trading-black.png differ diff --git a/animated_snippet/static/description/assets/icons/training.png b/animated_snippet/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/animated_snippet/static/description/assets/icons/training.png differ diff --git a/animated_snippet/static/description/assets/icons/update.png b/animated_snippet/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/animated_snippet/static/description/assets/icons/update.png differ diff --git a/animated_snippet/static/description/assets/icons/user.png b/animated_snippet/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/animated_snippet/static/description/assets/icons/user.png differ diff --git a/animated_snippet/static/description/assets/icons/wrench.png b/animated_snippet/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/animated_snippet/static/description/assets/icons/wrench.png differ diff --git a/animated_snippet/static/description/assets/misc/categories.png b/animated_snippet/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/animated_snippet/static/description/assets/misc/categories.png differ diff --git a/animated_snippet/static/description/assets/misc/check-box.png b/animated_snippet/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/animated_snippet/static/description/assets/misc/check-box.png differ diff --git a/animated_snippet/static/description/assets/misc/compass.png b/animated_snippet/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/animated_snippet/static/description/assets/misc/compass.png differ diff --git a/animated_snippet/static/description/assets/misc/corporate.png b/animated_snippet/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/animated_snippet/static/description/assets/misc/corporate.png differ diff --git a/animated_snippet/static/description/assets/misc/customer-support.png b/animated_snippet/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/animated_snippet/static/description/assets/misc/customer-support.png differ diff --git a/animated_snippet/static/description/assets/misc/cybrosys-logo.png b/animated_snippet/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/animated_snippet/static/description/assets/misc/cybrosys-logo.png differ diff --git a/animated_snippet/static/description/assets/misc/features.png b/animated_snippet/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/animated_snippet/static/description/assets/misc/features.png differ diff --git a/animated_snippet/static/description/assets/misc/logo.png b/animated_snippet/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/animated_snippet/static/description/assets/misc/logo.png differ diff --git a/animated_snippet/static/description/assets/misc/pictures.png b/animated_snippet/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/animated_snippet/static/description/assets/misc/pictures.png differ diff --git a/animated_snippet/static/description/assets/misc/pie-chart.png b/animated_snippet/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/animated_snippet/static/description/assets/misc/pie-chart.png differ diff --git a/animated_snippet/static/description/assets/misc/right-arrow.png b/animated_snippet/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/animated_snippet/static/description/assets/misc/right-arrow.png differ diff --git a/animated_snippet/static/description/assets/misc/star.png b/animated_snippet/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/animated_snippet/static/description/assets/misc/star.png differ diff --git a/animated_snippet/static/description/assets/misc/support.png b/animated_snippet/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/animated_snippet/static/description/assets/misc/support.png differ diff --git a/animated_snippet/static/description/assets/misc/whatsapp.png b/animated_snippet/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/animated_snippet/static/description/assets/misc/whatsapp.png differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_01.gif b/animated_snippet/static/description/assets/screenshots/snippet_01.gif new file mode 100644 index 000000000..50929d39d Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_01.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_02.gif b/animated_snippet/static/description/assets/screenshots/snippet_02.gif new file mode 100644 index 000000000..25ad4b299 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_02.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_03.gif b/animated_snippet/static/description/assets/screenshots/snippet_03.gif new file mode 100644 index 000000000..9f793a597 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_03.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_04.gif b/animated_snippet/static/description/assets/screenshots/snippet_04.gif new file mode 100644 index 000000000..e0ed46ddc Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_04.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_05.gif b/animated_snippet/static/description/assets/screenshots/snippet_05.gif new file mode 100644 index 000000000..1f723fead Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_05.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_06.gif b/animated_snippet/static/description/assets/screenshots/snippet_06.gif new file mode 100644 index 000000000..6c025e780 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_06.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_07.gif b/animated_snippet/static/description/assets/screenshots/snippet_07.gif new file mode 100644 index 000000000..c7defa022 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_07.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_08.gif b/animated_snippet/static/description/assets/screenshots/snippet_08.gif new file mode 100644 index 000000000..8e5d3327a Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_08.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_09.gif b/animated_snippet/static/description/assets/screenshots/snippet_09.gif new file mode 100644 index 000000000..9e6f63692 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_09.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_10.gif b/animated_snippet/static/description/assets/screenshots/snippet_10.gif new file mode 100644 index 000000000..73ce49555 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_10.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_11.gif b/animated_snippet/static/description/assets/screenshots/snippet_11.gif new file mode 100644 index 000000000..78ab8a133 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_11.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_12.gif b/animated_snippet/static/description/assets/screenshots/snippet_12.gif new file mode 100644 index 000000000..f98c67844 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_12.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_13.gif b/animated_snippet/static/description/assets/screenshots/snippet_13.gif new file mode 100644 index 000000000..76abedd55 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_13.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_14.gif b/animated_snippet/static/description/assets/screenshots/snippet_14.gif new file mode 100644 index 000000000..32403894d Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_14.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_15.gif b/animated_snippet/static/description/assets/screenshots/snippet_15.gif new file mode 100644 index 000000000..473f1c34d Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_15.gif differ diff --git a/animated_snippet/static/description/assets/screenshots/snippet_16.gif b/animated_snippet/static/description/assets/screenshots/snippet_16.gif new file mode 100644 index 000000000..c81ebfaf5 Binary files /dev/null and b/animated_snippet/static/description/assets/screenshots/snippet_16.gif differ diff --git a/animated_snippet/static/description/assets/y18.jpg b/animated_snippet/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/animated_snippet/static/description/assets/y18.jpg differ diff --git a/animated_snippet/static/description/banner.png b/animated_snippet/static/description/banner.png new file mode 100644 index 000000000..7b32f3698 Binary files /dev/null and b/animated_snippet/static/description/banner.png differ diff --git a/animated_snippet/static/description/icon.png b/animated_snippet/static/description/icon.png new file mode 100644 index 000000000..8440ccaac Binary files /dev/null and b/animated_snippet/static/description/icon.png differ diff --git a/animated_snippet/static/description/index.html b/animated_snippet/static/description/index.html new file mode 100644 index 000000000..7e2c4b807 --- /dev/null +++ b/animated_snippet/static/description/index.html @@ -0,0 +1,542 @@ + +
+
+
+

+ Animated Snippets +

+

+ Animated Snippets for your Website.

+
+ + +
+

+ This module is useful for making a webpage more beautiful. + Make your Website More interactive by adding different animated snippets + which can attract user attention and create a better user experience. +

+
+ + +
+ +
+ + + + +
+ +
+
+ + + + + +
+ +
+ + + + + + + +
+
+ + +
+
+ + +
+
+

+ Features +

+

+ Variety of Animated + Snippet in Website.

+
+
+

+ SNIPPET 01

+
+
+ +
+
+

+ SNIPPET 02

+
+
+ +
+
+

+ SNIPPET 03

+
+
+ +
+
+

+ SNIPPET 04

+
+
+ +
+
+

+ SNIPPET 05

+
+
+ +
+
+

+ SNIPPET 06

+
+
+ +
+
+

+ SNIPPET 07

+
+
+ +
+
+

+ SNIPPET 08

+
+
+ +
+
+

+ SNIPPET 09

+
+
+ +
+
+

+ SNIPPET 10

+
+
+ +
+
+

+ SNIPPET 11

+
+
+ +
+
+

+ SNIPPET 12

+
+
+ +
+
+

+ SNIPPET 13

+
+
+ +
+
+

+ SNIPPET 14

+
+
+ +
+
+

+ SNIPPET 15

+
+
+ +
+
+

+ SNIPPET 16

+
+
+ +
+
+ + +
+ + +
+ + +
+
+ + + + + + + + +
+ +
+
+ +
+

Our Services +

+
+ + +
+
+
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + +
+ + +
+
+
+

Our Industries

+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + + +
+
+
+

Support

+

Need help? Get in touch. +

+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 + 86068 + 27707

+
+
+
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ + \ No newline at end of file diff --git a/animated_snippet/static/src/css/a_color_blocks.css b/animated_snippet/static/src/css/a_color_blocks.css new file mode 100644 index 000000000..3ad1572d3 --- /dev/null +++ b/animated_snippet/static/src/css/a_color_blocks.css @@ -0,0 +1,36 @@ +@keyframes anim_icon_007{ + 0% {transform: rotateY(0deg);} + 50% {transform: rotateY(180deg) translateY(-25px); scale: 1.5;} + 100% {transform: rotateY(0deg) translateY(-35px); scale: 1.0;} +} +.block_007{padding: 8% 5%;} +.a_snippet_007{ + scale: 1.3; +} +.a_icon_007, .head_007, .p_007, .btn007{ + transition: 850ms; +} +.block_007:hover > .a_icon_007{ + animation-name: anim_icon_007; + animation-duration: 1200ms; + animation-iteration-count: 1; + animation-timing-function: ease-out; + transform: translateY(-35px); +} +.block_007:hover .head_007{ + position: relative; + transform: translateY(-35px); + scale: 1.3; +} +.btn007{ + opacity: 0; +} +.p_007{ + text-align: center; +} +.block_007:hover .p_007{ + transform: translateY(-20px); + scale: 1.15; +}.block_007:hover .btn007{ + opacity: 1; +} diff --git a/animated_snippet/static/src/css/a_columns.css b/animated_snippet/static/src/css/a_columns.css new file mode 100644 index 000000000..89d4d5376 --- /dev/null +++ b/animated_snippet/static/src/css/a_columns.css @@ -0,0 +1,22 @@ +.o_text_002{ + position: absolute; + padding: 15px; + background: linear-gradient(0deg, #fff0 65%, #000 90%); + color: transparent; + transition: 850ms + } +.o_text_002:hover{ + position: absolute; + padding: 15px; + background: linear-gradient(0deg, #fff0 -3%, #000 70%); + color: #fff; + } +.o_img_002{ transition: 850ms;} +.o_img_002:hover{transform: scale(1.1);} +.o_img_002:hover+.o_text_002{ + position: absolute; + padding: 15px; + background: linear-gradient(0deg, #fff0 -3%, #000 70%); + color: #fff; + z-index: 2 !important; + } diff --git a/animated_snippet/static/src/css/a_features.css b/animated_snippet/static/src/css/a_features.css new file mode 100644 index 000000000..4f4dbe016 --- /dev/null +++ b/animated_snippet/static/src/css/a_features.css @@ -0,0 +1,18 @@ +.o_box_011{ + margin-bottom: 20px; + padding: 5px; +} + +.a_snippet_011{ + float: left; +} +.md-7-011{ + transition: 250ms; + padding: 5px; + height: 97px; + border-radius: 5px; +} +.o_box_011:hover > .md-7-011{ + background: var(--o-color-5); + color: var(--o-color-3); +} \ No newline at end of file diff --git a/animated_snippet/static/src/css/a_features_01.css b/animated_snippet/static/src/css/a_features_01.css new file mode 100644 index 000000000..1f85e889b --- /dev/null +++ b/animated_snippet/static/src/css/a_features_01.css @@ -0,0 +1,12 @@ +.a_snippet_001{ + transition: 850ms; + } +.o_box_001{ + transition: 300ms; + } +.o_box_001:hover{ + box-shadow :1px 1px 22px 14px #d5d5d5 !important; +} +.o_box_001:hover .a_snippet_001{ + opacity: 1; + } diff --git a/animated_snippet/static/src/css/a_features_02.css b/animated_snippet/static/src/css/a_features_02.css new file mode 100644 index 000000000..dd89077a3 --- /dev/null +++ b/animated_snippet/static/src/css/a_features_02.css @@ -0,0 +1,29 @@ +@keyframes arc_rotate{ + 0% {transform: rotate(0deg);} + 100% {transform: rotate(360deg);} +} +.arc{ + border: 4px solid var(--o-color-2) ; + display: inline-block; + border-radius: 50%; + border-right-color: transparent; + margin-bottom: 30px; + transition: 950ms; +} +.o_box_004{ + margin-top: 35px; + transition: 450ms; +} +.o_box_004:hover{ + box-shadow: 0px 0px 25px 0px; + border-radius: 5px 90px 5px 90px; +} +.o_box_004:hover > .arc{ + animation-name: arc_rotate; + animation-duration: 5s; + animation-iteration-count: infinite; + animation-timing-function: linear; + } +.p_004{ + text-align: center; +} diff --git a/animated_snippet/static/src/css/a_features_03.css b/animated_snippet/static/src/css/a_features_03.css new file mode 100644 index 000000000..01aff7936 --- /dev/null +++ b/animated_snippet/static/src/css/a_features_03.css @@ -0,0 +1,50 @@ +.o_box_005{ + margin-top: 35px; + box-shadow: 0px 0px 0px 1px; + border-radius: 5px 5px 5px 5px; + transition: 650ms; + margin: 10px +} +.o_box_005:hover{ + border-radius: 10px 10px 10px 10px; + box-shadow: 0px 3px 0px 0px; +} +.a_snippet_005{ + position: relative; + top: 60px; + transition: 650ms; + } +.a_header{ + position: relative; + top: 80px; + transition: 650ms; +} +.line{ + height: 2px; + width: 2px; + opacity: 0; + transition: 950ms; +} +.p_005{ + position: relative; + top: -60px; + text-align: center; + opacity: 0 ; + transition: 550ms; +} +.o_box_005:hover .a_snippet_005{ + transform: translateY(-90px); + scale: 0.8; + } +.o_box_005:hover .a_header{ + transform: translateY(-90px); + } +.o_box_005:hover .line{ + height: 2px; + width: auto; + opacity:1; +} +.o_box_005:hover .p_005{ + opacity:1; + transform: translateY(65px); +} diff --git a/animated_snippet/static/src/css/a_features_04.css b/animated_snippet/static/src/css/a_features_04.css new file mode 100644 index 000000000..f6b6f88e7 --- /dev/null +++ b/animated_snippet/static/src/css/a_features_04.css @@ -0,0 +1,32 @@ +@keyframes circle_rotate{ + 0% {transform: rotateY(0deg);} + 100% {transform: rotateY(360deg);} +} +.circle{ + border: 4px solid var(--o-color-2); + display: inline-block; + border-radius: 50%; + margin-bottom: 30px; + transition: 950ms; + scale: 0.8; +} +.a_snippet_006{ + scale: 1.3; +} +.o_box_006{ + margin-top: 35px; + border-radius: 20px 20px 0px 0px; + transition: 450ms; +} +.o_box_006:hover{ + background-image: linear-gradient(180deg, var(--o-color-5) -110%, transparent); +} +.circle{ + animation-name: circle_rotate; + animation-duration: 3s; + animation-iteration-count: infinite; + animation-timing-function: linear; + } +.p_006{ + text-align: center; +} diff --git a/animated_snippet/static/src/css/a_features_05.css b/animated_snippet/static/src/css/a_features_05.css new file mode 100644 index 000000000..a56affabe --- /dev/null +++ b/animated_snippet/static/src/css/a_features_05.css @@ -0,0 +1,22 @@ +.a_snippet_008{ + position: relative; + right: 40%; + bottom: 40%; + transition: 850ms; + height: 4rem; +} +.o_box_008{ + margin-top: 5%; + margin-bottom: 5%; + opacity: 75%; + transition: 650ms; +} +.o_box_008:hover > .a_snippet_008{ + transform: translateX(160%); +} +.o_box_008:hover{ + opacity: 100%; +} +.p_008{ + text-align: center; +} diff --git a/animated_snippet/static/src/css/a_features_06.css b/animated_snippet/static/src/css/a_features_06.css new file mode 100644 index 000000000..84c2c5cef --- /dev/null +++ b/animated_snippet/static/src/css/a_features_06.css @@ -0,0 +1,37 @@ +.o_box_009{ + margin-top: 35px; + border-radius: 10px; + transition: 650ms; + margin: 10px; + padding: 0px !important; + background-color: var(--o-color-5); + color: var(--o-cc2-btn-secondary-text); +} +.o_box_009:hover{ + background-color: var(--o-color-2); +} +.corner009{ + position: relative; + width: 2em; + border-radius: 0px 0px 10px 0px; + height: 2em; + opacity: 0; + background-color: var(--o-color-5); + transition: 650ms; +} +.corner009-triangle{ + position: absolute; + width: 0; + height: 0; + rotate: -90deg; + border-style: solid; + border-width: 0 2em 2em 0px; + border-color: transparent var(--o-color-3) transparent transparent; +} +.o_box_009:hover > .corner009{ + opacity:1; +} +.p_009{ + text-align: center; + transition: 550ms; +} \ No newline at end of file diff --git a/animated_snippet/static/src/css/a_features_07.css b/animated_snippet/static/src/css/a_features_07.css new file mode 100644 index 000000000..1b4be8415 --- /dev/null +++ b/animated_snippet/static/src/css/a_features_07.css @@ -0,0 +1,33 @@ +.o_box_010{ + margin-top: 35px; + border-radius: 10px; + transition: 650ms; + margin: 10px; + padding: 0px; + color: var(--o-cc2-btn-primary-text); +} +.btn010{ + border-width: 3px; +} +.a_icon_010{ color: var(--o-color-2); } +.circle010{ + border: 4px solid var(--o-color-2); + display: inline-block; + border-radius: 50%; + margin-bottom: 30px; + transition: 350ms; +} +.o_box_010:hover > .circle010{ + background: var(--o-color-2); +} +.o_box_010:hover .a_icon_010{ + color: var(--o-color-3); +} +.o_box_010:hover .btn010{ + background: var(--o-color-3); + color: var(--o-cc1-btn-primary); +} +.p_010{ + text-align: center; + color: var(--o-color-5); +} \ No newline at end of file diff --git a/animated_snippet/static/src/css/a_features_08.css b/animated_snippet/static/src/css/a_features_08.css new file mode 100644 index 000000000..2da3920b0 --- /dev/null +++ b/animated_snippet/static/src/css/a_features_08.css @@ -0,0 +1,25 @@ +.circle013{ + border: 25px solid var(--o-color-2); + display: inline-block; + border-radius: 50%; + margin-bottom: 30px; + background: var(--o-color-2); +} +.a_snippet_013{ + transition: 650ms; +} +.btn013{ + opacity: 0; + transition: 650ms; + transform: rotateX(90deg); +} +.o_box_013:hover .a_snippet_013{ + transform: rotateY(180deg); +} +.o_box_013:hover .btn013{ + transform: rotateY(0deg); + opacity: 1; +} +.o_box_013:hover .header_013{ + color: var(--o-color-1); +} \ No newline at end of file diff --git a/animated_snippet/static/src/css/a_features_09.css b/animated_snippet/static/src/css/a_features_09.css new file mode 100644 index 000000000..04bf66c09 --- /dev/null +++ b/animated_snippet/static/src/css/a_features_09.css @@ -0,0 +1,30 @@ +.circle014{ + border: 5px solid var(--o-color-2); + display: inline-block; + border-radius: 50%; + margin-bottom: 10px; + background: var(--o-color-2); +} +.o_box_014{ + padding: 10px; +} +.a_snippet_014{ + scale:0.8; + transition: 650ms; + transition-timing-function: cubic-bezier(0.30, 1.1, 0.77, 1); +} +.a_box_014{ + padding: 25px; + box-shadow: 0px 5px 15px -5px var(--o-color-5); + border-radius: 15px; + transition: 650ms; +} +.a_box_014:hover{ + transform: translateY(-10px); + background: var(--o-color-5); + color: var(--o-color-4); + box-shadow: 0px 0px 0px 0px; +} +.a_box_014:hover .a_snippet_014{ + transform: rotate(360deg); +} \ No newline at end of file diff --git a/animated_snippet/static/src/css/a_image_gallery.css b/animated_snippet/static/src/css/a_image_gallery.css new file mode 100644 index 000000000..5d7e1f9f3 --- /dev/null +++ b/animated_snippet/static/src/css/a_image_gallery.css @@ -0,0 +1,21 @@ +.o_img_003{ + border-radius: 50%; + transform: scaleY(1.5); + scale: 0.2; + margin-left: 100px; + transition: 850ms; + } +.o_img_div_003:hover > .o_img_003{ + border-radius: 0%; + margin-left: 0px; + scale: 0.5; + transform: scale(2.0); + } +.o_img_div_003:hover{ + background-color: #403e400a; +} +.head_003{ + margin-bottom: -70px; + padding: 20px; + color +} diff --git a/animated_snippet/static/src/css/a_numbers.css b/animated_snippet/static/src/css/a_numbers.css new file mode 100644 index 000000000..c862f0574 --- /dev/null +++ b/animated_snippet/static/src/css/a_numbers.css @@ -0,0 +1,17 @@ +@keyframes animate_number{ + 0% {transform:translateY(0px); scale: 1.0;} + 10% {transform:translateY(0px); scale: 1.0;} + 20% {transform:translateY(0px); scale: 1.0;} + 50% {transform:translateY(-15px); scale: 1.3;} + 70% {transform:translateY(0px); scale: 1.0;} + 100% {transform:translateY(0px); scale: 1.0;} +} +#a_number{ + animation-name: animate_number; + animation-duration: 5s; + animation-iteration-count: infinite; +} +.a_number1{ animation-delay: 1s; transition: 250ms;} +.a_number2{ animation-delay: 4s; transition: 250ms;} +.a_number3{ animation-delay: 2s; transition: 250ms;} +.a_number4{ animation-delay: 3s; transition: 250ms;} \ No newline at end of file diff --git a/animated_snippet/static/src/css/a_product_list.css b/animated_snippet/static/src/css/a_product_list.css new file mode 100644 index 000000000..4fa454be7 --- /dev/null +++ b/animated_snippet/static/src/css/a_product_list.css @@ -0,0 +1,20 @@ +.a_img_list, .a_product_btn{ + transition: 850ms; +} +.a_product_list{ + padding-top: 20px; +} +.a_product_list_item_link{ + top: auto; + left: 10%; + bottom: 0; + right: 10%; +} +.a_item:hover .a_img_list{ + scale: 1.2; + box-shadow: 0px 15px 35px -10px; +} +.a_item:hover .a_product_btn{ + background: var(--o-color-2); + color: var(--o-color-3); +} \ No newline at end of file diff --git a/animated_snippet/static/src/css/a_showcase.css b/animated_snippet/static/src/css/a_showcase.css new file mode 100644 index 000000000..e4bcbb05e --- /dev/null +++ b/animated_snippet/static/src/css/a_showcase.css @@ -0,0 +1,32 @@ +@keyframes anim_icon_012{ + 0% {transform: rotateY(0deg);} + 50% {transform: translateY(-10px); scale: 1.5;} + 100% {transform: translateY(0px); scale: 1.0;} +} +.b_012{ + border-right-style: solid; + height: 0%; + opacity: 0; + transition: 350ms; + transition-timing-function: cubic-bezier(0.25,0.1,0.25,1); +} +.a_012_icon-right{ + margin-left: 5%; +} +.a_012_icon-left{ + margin-right: 5%; +} +.p_012{ + float: right; +} + +.a_012:hover .b_012{ + opacity:1; + height: 100%; +} +.a_box_012:hover .a_012{ + animation-name: anim_icon_012; + animation-duration: 550ms; + animation-iteration-count: 1; + animation-timing-function: cubic-bezier(0.1, -0.3, 0.35, -0.03); +} diff --git a/animated_snippet/static/src/img/a_color_block_thumb.svg b/animated_snippet/static/src/img/a_color_block_thumb.svg new file mode 100644 index 000000000..c4ebf3058 --- /dev/null +++ b/animated_snippet/static/src/img/a_color_block_thumb.svg @@ -0,0 +1,67 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/animated_snippet/static/src/img/a_columns_thumb.svg b/animated_snippet/static/src/img/a_columns_thumb.svg new file mode 100644 index 000000000..a73f6067d --- /dev/null +++ b/animated_snippet/static/src/img/a_columns_thumb.svg @@ -0,0 +1,124 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/animated_snippet/static/src/img/a_feature_thumb.svg b/animated_snippet/static/src/img/a_feature_thumb.svg new file mode 100644 index 000000000..48ed0b931 --- /dev/null +++ b/animated_snippet/static/src/img/a_feature_thumb.svg @@ -0,0 +1,53 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/animated_snippet/static/src/img/a_images_gallery_thumb.svg b/animated_snippet/static/src/img/a_images_gallery_thumb.svg new file mode 100644 index 000000000..fdad291f7 --- /dev/null +++ b/animated_snippet/static/src/img/a_images_gallery_thumb.svg @@ -0,0 +1,39 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/animated_snippet/static/src/img/a_numbers_thumb.svg b/animated_snippet/static/src/img/a_numbers_thumb.svg new file mode 100644 index 000000000..8e9234b72 --- /dev/null +++ b/animated_snippet/static/src/img/a_numbers_thumb.svg @@ -0,0 +1,52 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/animated_snippet/static/src/img/a_product_list_thumb.svg b/animated_snippet/static/src/img/a_product_list_thumb.svg new file mode 100644 index 000000000..bf1b9af92 --- /dev/null +++ b/animated_snippet/static/src/img/a_product_list_thumb.svg @@ -0,0 +1,83 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/animated_snippet/static/src/img/a_showcase_thumb.svg b/animated_snippet/static/src/img/a_showcase_thumb.svg new file mode 100644 index 000000000..091a9c9a9 --- /dev/null +++ b/animated_snippet/static/src/img/a_showcase_thumb.svg @@ -0,0 +1,55 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/animated_snippet/static/src/img/animation-icon.png b/animated_snippet/static/src/img/animation-icon.png new file mode 100644 index 000000000..db2734c52 Binary files /dev/null and b/animated_snippet/static/src/img/animation-icon.png differ diff --git a/animated_snippet/views/snippets/a_color_blocks_templates.xml b/animated_snippet/views/snippets/a_color_blocks_templates.xml new file mode 100644 index 000000000..9ded21465 --- /dev/null +++ b/animated_snippet/views/snippets/a_color_blocks_templates.xml @@ -0,0 +1,30 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_columns_templates.xml b/animated_snippet/views/snippets/a_columns_templates.xml new file mode 100644 index 000000000..0ca6ab5e4 --- /dev/null +++ b/animated_snippet/views/snippets/a_columns_templates.xml @@ -0,0 +1,50 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_01_templates.xml b/animated_snippet/views/snippets/a_features_01_templates.xml new file mode 100644 index 000000000..cb51b623e --- /dev/null +++ b/animated_snippet/views/snippets/a_features_01_templates.xml @@ -0,0 +1,30 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_02_templates.xml b/animated_snippet/views/snippets/a_features_02_templates.xml new file mode 100644 index 000000000..948093067 --- /dev/null +++ b/animated_snippet/views/snippets/a_features_02_templates.xml @@ -0,0 +1,48 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_03_templates.xml b/animated_snippet/views/snippets/a_features_03_templates.xml new file mode 100644 index 000000000..59d944b0b --- /dev/null +++ b/animated_snippet/views/snippets/a_features_03_templates.xml @@ -0,0 +1,52 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_04_templates.xml b/animated_snippet/views/snippets/a_features_04_templates.xml new file mode 100644 index 000000000..6497cf32e --- /dev/null +++ b/animated_snippet/views/snippets/a_features_04_templates.xml @@ -0,0 +1,48 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_05_templates.xml b/animated_snippet/views/snippets/a_features_05_templates.xml new file mode 100644 index 000000000..9337c9293 --- /dev/null +++ b/animated_snippet/views/snippets/a_features_05_templates.xml @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_06_templates.xml b/animated_snippet/views/snippets/a_features_06_templates.xml new file mode 100644 index 000000000..24aa33359 --- /dev/null +++ b/animated_snippet/views/snippets/a_features_06_templates.xml @@ -0,0 +1,64 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_07_templates.xml b/animated_snippet/views/snippets/a_features_07_templates.xml new file mode 100644 index 000000000..fb5e675f8 --- /dev/null +++ b/animated_snippet/views/snippets/a_features_07_templates.xml @@ -0,0 +1,64 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_08_templates.xml b/animated_snippet/views/snippets/a_features_08_templates.xml new file mode 100644 index 000000000..f37af5910 --- /dev/null +++ b/animated_snippet/views/snippets/a_features_08_templates.xml @@ -0,0 +1,39 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_09_templates.xml b/animated_snippet/views/snippets/a_features_09_templates.xml new file mode 100644 index 000000000..65ab0fdad --- /dev/null +++ b/animated_snippet/views/snippets/a_features_09_templates.xml @@ -0,0 +1,49 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_features_templates.xml b/animated_snippet/views/snippets/a_features_templates.xml new file mode 100644 index 000000000..3e8c36602 --- /dev/null +++ b/animated_snippet/views/snippets/a_features_templates.xml @@ -0,0 +1,69 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_image_gallery_templates.xml b/animated_snippet/views/snippets/a_image_gallery_templates.xml new file mode 100644 index 000000000..9eb98b5ea --- /dev/null +++ b/animated_snippet/views/snippets/a_image_gallery_templates.xml @@ -0,0 +1,54 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_numbers_templates.xml b/animated_snippet/views/snippets/a_numbers_templates.xml new file mode 100644 index 000000000..5c215d11a --- /dev/null +++ b/animated_snippet/views/snippets/a_numbers_templates.xml @@ -0,0 +1,32 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_product_list_templates.xml b/animated_snippet/views/snippets/a_product_list_templates.xml new file mode 100644 index 000000000..f45cbdf8f --- /dev/null +++ b/animated_snippet/views/snippets/a_product_list_templates.xml @@ -0,0 +1,67 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/a_showcase_templates.xml b/animated_snippet/views/snippets/a_showcase_templates.xml new file mode 100644 index 000000000..cf7e1df9c --- /dev/null +++ b/animated_snippet/views/snippets/a_showcase_templates.xml @@ -0,0 +1,51 @@ + + + + + \ No newline at end of file diff --git a/animated_snippet/views/snippets/snippets.xml b/animated_snippet/views/snippets/snippets.xml new file mode 100644 index 000000000..39fbb38c8 --- /dev/null +++ b/animated_snippet/views/snippets/snippets.xml @@ -0,0 +1,77 @@ + + + + + \ No newline at end of file