<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[fading in &#x2F;tags page]]></title><description><![CDATA[<p dir="auto">hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/phenomlab" aria-label="Profile: phenomlab">@<bdi>phenomlab</bdi></a> ,</p>
<p dir="auto">I loved how all tags except the selected one fade in /tags page…</p>
<p dir="auto"><a href="https://sudonix.com/tags" target="_blank" rel="noopener noreferrer nofollow ugc">https://sudonix.com/tags</a></p>
<p dir="auto"><img src="/assets/uploads/files/1655603066991-screen-shot-2022-06-18-at-9.42.10-pm-resized.png" alt="Screen Shot 2022-06-18 at 9.42.10 PM.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">can you please share the secret? <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--smile" style="height:23px;width:auto;vertical-align:middle" title=":D" alt="😄" /></p>
]]></description><link>https://sudonix.org/topic/295/fading-in-tags-page</link><generator>RSS for Node</generator><lastBuildDate>Sun, 15 Mar 2026 22:59:47 GMT</lastBuildDate><atom:link href="https://sudonix.org/topic/295.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 19 Jun 2022 01:47:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to fading in &#x2F;tags page on Mon, 20 Jun 2022 09:51:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/crazycells" aria-label="Profile: crazycells">@<bdi>crazycells</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/user/downpw" aria-label="Profile: DownPW">@<bdi>DownPW</bdi></a> here you go…</p>
<pre><code>/* SIBLING FADE: fade out siblings around a hovered item */

.tag-list { visibility: hidden; }
/* Prevents :hover from triggering in the gaps between items */

.tag-list &gt; * { visibility: visible; }
/* Brings the child items back in, even though the parent is `hidden` */

.tag-list &gt; * { transition: opacity 150ms linear 100ms, transform 150ms ease-in-out 100ms; }
/* Makes the fades smooth with a slight delay to prevent jumps as the mouse moves between items */

.tag-list:hover &gt; * { opacity: 0.4; transform: scale(0.9); }
/* Fade out all items when the parent is hovered */

.tag-list &gt; *:hover { opacity: 1; transform: scale(1); transition-delay: 0ms, 0ms; }
/* Fade in the currently hovered item */
</code></pre>
<p dir="auto">This isn’t my creation actually - I stumbled across the below <span class="glossary-wrapper" title="source code" data-bs-toggle="tooltip" data-bs-placement="top"><span class="glossary-word">Code</span></span> Pen and fell in love with it</p>
<p dir="auto"><a href="https://codepen.io/bytzmura/embed/XWjMPdx?default-tab=css%2Cresult&amp;theme-id=dark" target="_blank" rel="noopener noreferrer nofollow ugc">https://codepen.io/bytzmura/embed/XWjMPdx?default-tab=css%2Cresult&amp;theme-id=dark</a></p>
]]></description><link>https://sudonix.org/post/3587</link><guid isPermaLink="true">https://sudonix.org/post/3587</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Mon, 20 Jun 2022 09:51:20 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Thu, 01 Jun 2023 18:38:20 GMT]]></title><description><![CDATA[<p dir="auto">Fix working perfectly <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44d.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--+1" style="height:23px;width:auto;vertical-align:middle" title=":+1:" alt="👍" /> <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://sudonix.org/post/6244</link><guid isPermaLink="true">https://sudonix.org/post/6244</guid><dc:creator><![CDATA[DownPW]]></dc:creator><pubDate>Thu, 01 Jun 2023 18:38:20 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Thu, 01 Jun 2023 17:59:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/downpw" aria-label="Profile: DownPW">@<bdi>DownPW</bdi></a> Yes, I am aware. Will address shortly.</p>
<p dir="auto">EDIT - replace</p>
<pre><code>.tags a[href*="/tags/"] {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    margin: 8px;
    width: 145px;
    background: var(--bs-body-navbar);
}
</code></pre>
<p dir="auto">With</p>
<pre><code>.tags:not([component="topic/tags"]) a[href*="/tags/"] {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    margin: 8px;
    width: 145px;
    background: var(--bs-body-navbar);
}
</code></pre>
<p dir="auto">Updating original post</p>
]]></description><link>https://sudonix.org/post/6243</link><guid isPermaLink="true">https://sudonix.org/post/6243</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Thu, 01 Jun 2023 17:59:37 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Thu, 01 Jun 2023 17:39:13 GMT]]></title><description><![CDATA[<p dir="auto">hi mark</p>
<p dir="auto">just a small note</p>
<p dir="auto">seems to that code break tags on topic header :</p>
<p dir="auto"><img src="/assets/uploads/files/1685641083458-3138cf05-f60a-409c-9487-ce888773ab0c-image.png" alt="image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://sudonix.org/post/6242</link><guid isPermaLink="true">https://sudonix.org/post/6242</guid><dc:creator><![CDATA[DownPW]]></dc:creator><pubDate>Thu, 01 Jun 2023 17:39:13 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Wed, 31 May 2023 16:39:19 GMT]]></title><description><![CDATA[<p dir="auto">Ohhh yes <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44c.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--ok_hand" style="height:23px;width:auto;vertical-align:middle" title="👌" alt="👌" /></p>
]]></description><link>https://sudonix.org/post/6229</link><guid isPermaLink="true">https://sudonix.org/post/6229</guid><dc:creator><![CDATA[DownPW]]></dc:creator><pubDate>Wed, 31 May 2023 16:39:19 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Wed, 31 May 2023 16:31:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/downpw" aria-label="Profile: DownPW">@<bdi>DownPW</bdi></a> Thanks, and welcome to “Grand Master” status <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://sudonix.org/post/6228</link><guid isPermaLink="true">https://sudonix.org/post/6228</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Wed, 31 May 2023 16:31:46 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Wed, 31 May 2023 16:31:14 GMT]]></title><description><![CDATA[<p dir="auto">And the magic happens <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
<p dir="auto">Same effect as on the V2 but I love it ^^</p>
<p dir="auto"><img src="https://media.tenor.com/w43BD6aqqEEAAAAC/magic-unicorn.gif" alt="Magic Unicorn GIF" class=" img-fluid img-markdown" /></p>
]]></description><link>https://sudonix.org/post/6227</link><guid isPermaLink="true">https://sudonix.org/post/6227</guid><dc:creator><![CDATA[DownPW]]></dc:creator><pubDate>Wed, 31 May 2023 16:31:14 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Thu, 01 Jun 2023 17:59:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/crazycells" aria-label="Profile: crazycells">@<bdi>crazycells</bdi></a> Of course… You did ask me for these <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
<pre><code>.tags:not([component="topic/tags"]) a[href*="/tags/"] {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    margin: 8px;
    width: 145px;
    background: var(--bs-body-navbar);
}
/* SIBLING FADE: fade out siblings around a hovered item */

.tag-list { visibility: hidden; }
/* Prevents :hover from triggering in the gaps between items */

.tag-list &gt; * { visibility: visible; }
/* Brings the child items back in, even though the parent is `hidden` */

.tag-list &gt; * { transition: opacity 150ms linear 100ms, transform 150ms ease-in-out 100ms; }
/* Makes the fades smooth with a slight delay to prevent jumps as the mouse moves between items */

.tag-list:hover &gt; * { opacity: 0.4; transform: scale(0.9); }
/* Fade out all items when the parent is hovered */

.tag-list &gt; *:hover { opacity: 1; transform: scale(1); transition-delay: 0ms, 0ms; }
/* Fade in the currently hovered item */

.tags a[href*="/tags/"] .tag-item {
    border-bottom: 4px solid var(--bs-border-color) !important;
}
</code></pre>
]]></description><link>https://sudonix.org/post/6226</link><guid isPermaLink="true">https://sudonix.org/post/6226</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Thu, 01 Jun 2023 17:59:47 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Wed, 31 May 2023 15:41:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/phenomlab" aria-label="Profile: phenomlab">@<bdi>phenomlab</bdi></a> can you please share the <span class="glossary-wrapper" title="Cascading Style Sheets" data-bs-toggle="tooltip" data-bs-placement="top"><span class="glossary-word">CSS</span></span> codes?</p>
]]></description><link>https://sudonix.org/post/6225</link><guid isPermaLink="true">https://sudonix.org/post/6225</guid><dc:creator><![CDATA[crazycells]]></dc:creator><pubDate>Wed, 31 May 2023 15:41:27 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Wed, 31 May 2023 15:39:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/phenomlab" aria-label="Profile: phenomlab">@<bdi>phenomlab</bdi></a> nice <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--smile" style="height:23px;width:auto;vertical-align:middle" title=":D" alt="😄" /> this looks very good…</p>
<p dir="auto">On a side note, I have been just watching/listening Doc and Marty’s adventures in the background and then I see this <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f923.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--rolling_on_the_floor_laughing" style="height:23px;width:auto;vertical-align:middle" title=":rolling_on_the_floor_laughing:" alt="🤣" /></p>
<p dir="auto"><img src="https://media.tenor.com/6KmlRRFGXeEAAAAC/back-to.gif" alt="Back To GIF" class=" img-fluid img-markdown" /></p>
]]></description><link>https://sudonix.org/post/6224</link><guid isPermaLink="true">https://sudonix.org/post/6224</guid><dc:creator><![CDATA[crazycells]]></dc:creator><pubDate>Wed, 31 May 2023 15:39:37 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Wed, 31 May 2023 15:35:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/crazycells" aria-label="Profile: crazycells">@<bdi>crazycells</bdi></a> just for you…</p>
<p dir="auto"><img src="/assets/uploads/files/1685547323414-63332828.jpg" alt="63332828.jpg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://sudonix.org/post/6223</link><guid isPermaLink="true">https://sudonix.org/post/6223</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Wed, 31 May 2023 15:35:25 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Sat, 27 May 2023 20:33:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/crazycells" aria-label="Profile: crazycells">@<bdi>crazycells</bdi></a> I must admit, I’ve neglected the tags page somewhat, but I do agree with you - it’s pretty dull and could do with some magic.</p>
]]></description><link>https://sudonix.org/post/6140</link><guid isPermaLink="true">https://sudonix.org/post/6140</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Sat, 27 May 2023 20:33:42 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Sat, 27 May 2023 20:19:50 GMT]]></title><description><![CDATA[<p dir="auto">The tags page looked better before, it does not look good when it is very “ordered”. <a class="plugin-mentions-user plugin-mentions-a" href="/user/phenomlab" aria-label="Profile: phenomlab">@<bdi>phenomlab</bdi></a> do you have any intention to change that page in harmony thema?</p>
]]></description><link>https://sudonix.org/post/6139</link><guid isPermaLink="true">https://sudonix.org/post/6139</guid><dc:creator><![CDATA[crazycells]]></dc:creator><pubDate>Sat, 27 May 2023 20:19:50 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Tue, 28 Jun 2022 20:27:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/downpw" aria-label="Profile: DownPW">@<bdi>DownPW</bdi></a> it’s here<br />
<a href="https://sudonix.com/post/3590" target="_blank" rel="noopener noreferrer nofollow ugc">https://sudonix.com/post/3590</a></p>
<p dir="auto">The exact <span class="glossary-wrapper" title="Cascading Style Sheets" data-bs-toggle="tooltip" data-bs-placement="top"><span class="glossary-word">CSS</span></span> I have here is</p>
<pre><code>@keyframes rotate180 {
        from {
          transform: rotate(0deg);
        }
       
        to {
          transform: rotate(180deg);
        }
      }
       
      @keyframes rotate0 {
        from {
          transform: rotate(180deg);
        }
       
        to {
          transform: rotate(0deg);
        }
      }
    .forum-logo:hover {
        transform: rotate(180deg);
    }
    .hover {
        transform: rotate(180deg);
    }</code></pre>
]]></description><link>https://sudonix.org/post/3663</link><guid isPermaLink="true">https://sudonix.org/post/3663</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Tue, 28 Jun 2022 20:27:24 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Tue, 28 Jun 2022 19:55:31 GMT]]></title><description><![CDATA[<p dir="auto">hmm not work</p>
<p dir="auto">can you provide your <span class="glossary-wrapper" title="Cascading Style Sheets" data-bs-toggle="tooltip" data-bs-placement="top"><span class="glossary-word">CSS</span></span> code and keyframe for I see it ?<br />
On sudonix, the animation stop and restart when we leave the mouse over.</p>
]]></description><link>https://sudonix.org/post/3662</link><guid isPermaLink="true">https://sudonix.org/post/3662</guid><dc:creator><![CDATA[DownPW]]></dc:creator><pubDate>Tue, 28 Jun 2022 19:55:31 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Mon, 27 Jun 2022 10:02:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/downpw" aria-label="Profile: DownPW">@<bdi>DownPW</bdi></a> I see what you mean. The reason for this is that you are calling both <code>rotate180</code> and <code>rotate0</code> which are two separate effects.</p>
<pre><code>   animation-name: rotate180, rotate0;
</code></pre>
<p dir="auto">You could remove <code>rotate0</code> from this section and that will stop the animation as soon as the <code>mouseLeave</code> event is triggered in the <code>DOM</code> (in other words, as soon as you remove the hover)</p>
<pre><code>   animation-name: rotate180;
</code></pre>
]]></description><link>https://sudonix.org/post/3654</link><guid isPermaLink="true">https://sudonix.org/post/3654</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Mon, 27 Jun 2022 10:02:27 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Mon, 27 Jun 2022 07:59:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/phenomlab" aria-label="Profile: phenomlab">@<bdi>phenomlab</bdi></a></p>
<p dir="auto">no no my god, not constantly animation !!</p>
<p dir="auto">If I hover over the logo, the animation triggers as currently, continues and ends even if I remove the mouse from the logo.</p>
<p dir="auto">That’s what’s happening here on Sudonix.</p>
]]></description><link>https://sudonix.org/post/3653</link><guid isPermaLink="true">https://sudonix.org/post/3653</guid><dc:creator><![CDATA[DownPW]]></dc:creator><pubDate>Mon, 27 Jun 2022 07:59:32 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Sat, 25 Jun 2022 23:26:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/downpw" aria-label="Profile: DownPW">@<bdi>DownPW</bdi></a> said in <a href="/post/3633">fading in /tags page</a>:</p>
<blockquote>
<p dir="auto">as soon as I remove the mouse pointer from the logo, it returns to it’s original place and it cuts the animation.</p>
</blockquote>
<p dir="auto">Yes, that’s expected because you have the css set for <code>hover</code> state meaning once you remove that state, the animation will stop <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f601.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--grin" style="height:23px;width:auto;vertical-align:middle" title="😁" alt="😁" /></p>
<p dir="auto">You need to refactor the css to achieve the effect the looking for. Personally, I wouldn’t go for a constantly spinning logo. If you’re as old as I am, you’ll recall this being a thing in Internet Explorer 4 with the spinning globe on the right that was a constant presence and quite a distraction.</p>
<p dir="auto">I also wouldn’t do this on any mobile devices as it can severely degrade the browser performance.</p>
]]></description><link>https://sudonix.org/post/3638</link><guid isPermaLink="true">https://sudonix.org/post/3638</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Sat, 25 Jun 2022 23:26:55 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Sat, 25 Jun 2022 20:51:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/phenomlab" aria-label="Profile: phenomlab">@<bdi>phenomlab</bdi></a></p>
<p dir="auto">Example here of the problem</p>
<p dir="auto"><a href="https://i.imgur.com/jI2vlrF.mp4" target="_blank" rel="noopener noreferrer nofollow ugc">https://i.imgur.com/jI2vlrF.mp4</a></p>
]]></description><link>https://sudonix.org/post/3636</link><guid isPermaLink="true">https://sudonix.org/post/3636</guid><dc:creator><![CDATA[DownPW]]></dc:creator><pubDate>Sat, 25 Jun 2022 20:51:45 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Fri, 24 Jun 2022 23:02:08 GMT]]></title><description><![CDATA[<p dir="auto">hmmm</p>
<p dir="auto">Strange with the code I put above, as soon as I remove the mouse pointer from the logo, it returns to it’s original place and it cuts the animation.</p>
<p dir="auto">How can we let the animation end even if we remove the mouse pointer from the logo ?</p>
]]></description><link>https://sudonix.org/post/3633</link><guid isPermaLink="true">https://sudonix.org/post/3633</guid><dc:creator><![CDATA[DownPW]]></dc:creator><pubDate>Fri, 24 Jun 2022 23:02:08 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Mon, 20 Jun 2022 20:58:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/phenomlab" aria-label="Profile: phenomlab">@<bdi>phenomlab</bdi></a> thanks <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44d.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--+1" style="height:23px;width:auto;vertical-align:middle" title=":+1:" alt="👍" /></p>
]]></description><link>https://sudonix.org/post/3598</link><guid isPermaLink="true">https://sudonix.org/post/3598</guid><dc:creator><![CDATA[crazycells]]></dc:creator><pubDate>Mon, 20 Jun 2022 20:58:25 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Mon, 20 Jun 2022 19:06:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/crazycells" aria-label="Profile: crazycells">@<bdi>crazycells</bdi></a> change <code>180</code> to <code>360</code> on the keyframes and set to time to <code>infinite</code> on the animation, so an example would be</p>
<pre><code>animation-iteration-count: infinite;
</code></pre>
<p dir="auto">Don’t do this on mobile devices though as performance will be greatly impacted.</p>
]]></description><link>https://sudonix.org/post/3596</link><guid isPermaLink="true">https://sudonix.org/post/3596</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Mon, 20 Jun 2022 19:06:53 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Mon, 20 Jun 2022 18:27:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/downpw" aria-label="Profile: DownPW">@<bdi>DownPW</bdi></a> thanks for the codes, how should we edit it if we want a full turn? and keep turning as long as the mouse is hovered on?</p>
]]></description><link>https://sudonix.org/post/3595</link><guid isPermaLink="true">https://sudonix.org/post/3595</guid><dc:creator><![CDATA[crazycells]]></dc:creator><pubDate>Mon, 20 Jun 2022 18:27:45 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Mon, 20 Jun 2022 18:26:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/phenomlab" aria-label="Profile: phenomlab">@<bdi>phenomlab</bdi></a> thanks for sharing, that looks very cool <img src="https://sudonix.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44d.png?v=2aae5d77d27" class="not-responsive emoji emoji-android emoji--+1" style="height:23px;width:auto;vertical-align:middle" title=":+1:" alt="👍" /></p>
]]></description><link>https://sudonix.org/post/3594</link><guid isPermaLink="true">https://sudonix.org/post/3594</guid><dc:creator><![CDATA[crazycells]]></dc:creator><pubDate>Mon, 20 Jun 2022 18:26:29 GMT</pubDate></item><item><title><![CDATA[Reply to fading in &#x2F;tags page on Mon, 20 Jun 2022 12:31:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/downpw" aria-label="Profile: DownPW">@<bdi>DownPW</bdi></a> Yes, that was going to be my solution.</p>
]]></description><link>https://sudonix.org/post/3593</link><guid isPermaLink="true">https://sudonix.org/post/3593</guid><dc:creator><![CDATA[phenomlab]]></dc:creator><pubDate>Mon, 20 Jun 2022 12:31:36 GMT</pubDate></item></channel></rss>