Created
August 27, 2023 14:56
-
-
Save TeamBug99/eccb04d3447253b114fed8660c83a51d to your computer and use it in GitHub Desktop.
Smooth Accordion with TailwindCSS & Alpine.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="bg-gray-100 h-screen w-screen flex justify-center"> | |
<div class="mr-8"> | |
<h1 class="font-medium max-w-xl mx-auto pt-10 pb-4">Smooth Accordion</h1> | |
<div class="bg-white max-w-xl mx-auto border border-gray-200" x-data="{selected:1}"> | |
<ul class="shadow-box"> | |
<li class="relative border-b border-gray-200"> | |
<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 1 ? selected = 1 : selected = null"> | |
<div class="flex items-center justify-between"> | |
<span> | |
Should I use reCAPTCHA v2 or v3? </span> | |
<span class="ico-plus"></span> | |
</div> | |
</button> | |
<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container1" x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''"> | |
<div class="p-6"> | |
<p>reCAPTCHA v2 is not going away! We will continue to fully support and improve security and usability for v2.</p> | |
<p>reCAPTCHA v3 is intended for power users, site owners that want more data about their traffic, and for use cases in which it is not appropriate to show a challenge to the user.</p> | |
<p>For example, a registration page might still use reCAPTCHA v2 for a higher-friction challenge, whereas more common actions like sign-in, searches, comments, or voting might use reCAPTCHA v3. To see more details, see the reCAPTCHA v3 developer guide.</p> | |
</div> | |
</div> | |
</li> | |
<li class="relative border-b border-gray-200"> | |
<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 2 ? selected = 2 : selected = null"> | |
<div class="flex items-center justify-between"> | |
<span> | |
I'd like to run automated tests with reCAPTCHA. What should I do? </span> | |
<span class="ico-plus"></span> | |
</div> | |
</button> | |
<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container2" x-bind:style="selected == 2 ? 'max-height: ' + $refs.container2.scrollHeight + 'px' : ''"> | |
<div class="p-6"> | |
<p>For reCAPTCHA v3, create a separate key for testing environments. Scores may not be accurate as reCAPTCHA v3 relies on seeing real traffic.</p> | |
<p>For reCAPTCHA v2, use the following test keys. You will always get No CAPTCHA and all verification requests will pass.</p> | |
</div> | |
</div> | |
</li> | |
<li class="relative border-b border-gray-200"> | |
<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 3 ? selected = 3 : selected = null"> | |
<div class="flex items-center justify-between"> | |
<span> | |
Can I run reCAPTCHA v2 and v3 on the same page? </span> | |
<span class="ico-plus"></span> | |
</div> | |
</button> | |
<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container3" x-bind:style="selected == 3 ? 'max-height: ' + $refs.container3.scrollHeight + 'px' : ''"> | |
<div class="p-6"> | |
<p>To do this, load the v3 site key as documented, and then explicitly render v2 using grecaptcha.render.</p> | |
<p>You are allowed to hide the badge as long as you include the reCAPTCHA branding visibly in the user flow. Please include the following text:</p> | |
<p>Yes, please use "www.recaptcha.net" in your code in circumstances when "www.google.com" is not accessible.</p> | |
<ul> | |
<li>First, replace <script src="https://www.google.com/recaptcha/api.js" async defer></script> with <script src="https://www.recaptcha.net/recaptcha/api.js" async defer></script></li> | |
<li>After that, apply the same to everywhere else that uses "www.google.com/recaptcha/" on your site.</li> | |
</ul> | |
<p>After that, apply the same to everywhere else that uses "www.google.com/recaptcha/" on your site.</p> | |
</div> | |
</div> | |
</li> | |
</ul> | |
</div> | |
</div> | |
<div class="ml-8"> | |
<h1 class="font-medium max-w-xl mx-auto pt-10 pb-4">Smooth Collapse</h1> | |
<div class="bg-white max-w-xl mx-auto border border-gray-200"> | |
<ul class="shadow-box"> | |
<li class="relative border-b border-gray-200" x-data="{selected:null}"> | |
<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 1 ? selected = 1 : selected = null"> | |
<div class="flex items-center justify-between"> | |
<span> | |
Should I use reCAPTCHA v2 or v3? </span> | |
<span class="ico-plus"></span> | |
</div> | |
</button> | |
<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container1" x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''"> | |
<div class="p-6"> | |
<p>reCAPTCHA v2 is not going away! We will continue to fully support and improve security and usability for v2.</p> | |
<p>reCAPTCHA v3 is intended for power users, site owners that want more data about their traffic, and for use cases in which it is not appropriate to show a challenge to the user.</p> | |
<p>For example, a registration page might still use reCAPTCHA v2 for a higher-friction challenge, whereas more common actions like sign-in, searches, comments, or voting might use reCAPTCHA v3. To see more details, see the reCAPTCHA v3 developer guide.</p> | |
</div> | |
</div> | |
</li> | |
<li class="relative border-b border-gray-200" x-data="{selected:null}"> | |
<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 2 ? selected = 2 : selected = null"> | |
<div class="flex items-center justify-between"> | |
<span> | |
I'd like to run automated tests with reCAPTCHA. What should I do? </span> | |
<span class="ico-plus"></span> | |
</div> | |
</button> | |
<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container2" x-bind:style="selected == 2 ? 'max-height: ' + $refs.container2.scrollHeight + 'px' : ''"> | |
<div class="p-6"> | |
<p>For reCAPTCHA v3, create a separate key for testing environments. Scores may not be accurate as reCAPTCHA v3 relies on seeing real traffic.</p> | |
<p>For reCAPTCHA v2, use the following test keys. You will always get No CAPTCHA and all verification requests will pass.</p> | |
</div> | |
</div> | |
</li> | |
<li class="relative border-b border-gray-200" x-data="{selected:null}"> | |
<button type="button" class="w-full px-8 py-6 text-left" @click="selected !== 3 ? selected = 3 : selected = null"> | |
<div class="flex items-center justify-between"> | |
<span> | |
Can I run reCAPTCHA v2 and v3 on the same page? </span> | |
<span class="ico-plus"></span> | |
</div> | |
</button> | |
<div class="relative overflow-hidden transition-all max-h-0 duration-700" style="" x-ref="container3" x-bind:style="selected == 3 ? 'max-height: ' + $refs.container3.scrollHeight + 'px' : ''"> | |
<div class="p-6"> | |
<p>To do this, load the v3 site key as documented, and then explicitly render v2 using grecaptcha.render.</p> | |
<p>You are allowed to hide the badge as long as you include the reCAPTCHA branding visibly in the user flow. Please include the following text:</p> | |
<p>Yes, please use "www.recaptcha.net" in your code in circumstances when "www.google.com" is not accessible.</p> | |
<ul> | |
<li>First, replace <script src="https://www.google.com/recaptcha/api.js" async defer></script> with <script src="https://www.recaptcha.net/recaptcha/api.js" async defer></script></li> | |
<li>After that, apply the same to everywhere else that uses "www.google.com/recaptcha/" on your site.</li> | |
</ul> | |
<p>After that, apply the same to everywhere else that uses "www.google.com/recaptcha/" on your site.</p> | |
</div> | |
</div> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.max-h-0 { | |
max-height: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.4.5/tailwind.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment