Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:MoveCard: Difference between revisions

Template page
No edit summary
No edit summary
Line 2: Line 2:


   <!-- GIF that restarts on hover using standard MediaWiki syntax -->
   <!-- GIF that restarts on hover using standard MediaWiki syntax -->
  <div class="move-image" style="flex-shrink: 0; width: 210px;">
<div class="move-image" style="flex-shrink: 0; width: 210px;">
    [[File:{{{image|Placeholder.gif}}}|210px|link=|class=hover-gif]]
  [[File:{{{image|Placeholder.gif}}}|210px|link=|class=hover-gif]]
  </div>
</div>


   <!-- Move data -->
   <!-- Move data -->

Revision as of 19:11, 3 September 2025

Startup Hit Level Properties On Block On Hit On Counter

No description provided.

<script>

 document.addEventListener('DOMContentLoaded', function () {
   document.querySelectorAll('.hover-gif').forEach(function (img) {
     img.addEventListener('mouseover', function () {
       const src = img.src.split('?')[0];
       img.src = src + '?1';
     });
   });
 });

</script>