search
HomeWeb Front-endCSS TutorialHow to Animate a SVG with border-image

Create dynamic border effects using CSS's border-image attribute and animated SVG

This article will introduce how to combine the border-image attribute of CSS and animated SVG to create a dynamic SVG animation effect surrounding the border. We will learn how to hand-made resizable nine-grid animated SVGs that can not only reproduce this effect, but also customize it according to your needs.

The final effect is as follows:

How to Animate a SVG with border-image

This animation is actually part of a flag-taking puzzle I'm developing called "The Skull" to explore the internal structure of the Arduino and its microcontroller. I searched for how to create an animated border like this, but couldn't find any useful examples. Most of the content I found is related to the "Ant March" effect, but unfortunately the stroke-dasharray trick doesn't work with skulls, let alone more complex shapes.

Therefore, in the spirit of learning and sharing, I will share my experience with you here!

Should I use background or border-image ?

At first, I didn't even know the existence of border-image attribute. In my first attempt, I tried to use ::before pseudo-element and animate its background-position attribute. The results are as follows:

As you can see, this method works, but to complete the entire border, at least eight different elements (or pseudo-elements) are required. This will confuse HTML code and is not ideal.

I posted a question in the Israeli CSS Developer Facebook group and everyone pointed out border-image attribute to me. It fits exactly what it's called: use an image (or CSS gradient) as the border of the element.

To use border-image you have to provide an image that is used in a nine-grid fashion (imagine overlaying a tic toe grid on the image). Each of these nine areas represents a different part of the border: the top, right, left and bottom, four corners, and the middle (the middle part will be ignored).

For example, if we only need static skulls, we can use the SVG pattern to repeat the skulls nine times. First, we use the path of the skull to define a 24×24 pattern, and then use this pattern as a fill for the 72×72 rectangle:

<svg height="72" version="1.1" width="72" xmlns="http://www.w3.org/2000/svg"><defs><pattern height="24" patternunits="userSpaceOnUse" width="24"><path d="..." fill="red"></path></pattern></defs><rect fill="url(#skull-fill)" height="72" width="72"></rect></svg>

Next, we define a border and set border-image of the target element:

 .skulls {
  border: 24px solid transparent;
  border-image: url("https://skullctf.com/images/skull-9.svg") 24 round;
}

This way we get a border consisting of skulls:

Add SVG animation

Now we can add animations to these skulls! It works fine for most of the time.

The idea is to create different animations for each area in the border image. For example, in the upper left corner, we have one skull moving from right to left, while the other skull moving from top to bottom at the same time.

We will animate transform attributes to achieve the movement effect. We will also use SVG<use></use> Elements to avoid repeated lengthy repetitions for each skull<path></path> definition:

<svg height="96" version="1.1" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  @keyframes left {to {transform: translate(-32px, 0)}}
  @keyframes down {to {transform: translate(0, 32px)}}
 <defs><path d="..." fill="red"></path></defs><use href="#skull" style="animation: down .4s infinite linear" x="0" y="0"></use><use href="#skull" style="animation: left .4s infinite linear" x="32" y="0"></use></svg>

The SVG animation syntax here may look familiar, as it is not some sort of SVG-specific syntax, such as SMIL, but uses CSS animations. Very cool, right?

The final effect is as follows:

If we add a grid, we can see that this animation also covers part of the top and left edges:

After we add the remaining three edges, it looks more impressive, thus completely covering eight areas of the border image:

<svg height="96" version="1.1" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  @keyframes left {to {transform: translate(-32px, 0)}}
  @keyframes down {to {transform: translate(0, 32px)}}
  @keyframes right {to {transform: translate(32px, 0)}}
  @keyframes up {to {transform: translate(0, -32px)}}
 <defs><path d="..." fill="red"></path></defs><use href="#skull" style="animation: down .4s infinite linear" x="0" y="0"></use><use href="#skull" style="animation: left .4s infinite linear" x="32" y="0"></use><use href="#skull" style="animation: left .4s infinite linear" x="64" y="0"></use><use href="#skull" style="animation: up .4s infinite linear" x="64" y="32"></use><use href="#skull" style="animation: down .4s infinite linear" x="0" y="32"></use><use href="#skull" style="animation: right .4s infinite linear" x="0" y="64"></use><use href="#skull" style="animation: right .4s infinite linear" x="32" y="64"></use><use href="#skull" style="animation: up .4s infinite linear" x="64" y="64"></use></svg>

This provides us with a complete loop:

Put everything together and we use the animation SVG we just created as border-image to get the desired result:

I can play this all day...

When I first got it to work, I started to adjust the animation properties. This is one of the advantages of using SVG instead of GIF: changing the nature of the animation is as simple as changing a CSS property in the SVG source file, you can see the results immediately, not to mention smaller file sizes (especially when dealing with gradients), full color support and clear scaling.

First, I try to see what it would look like if I change the animation timing function to ease :

We can also make the skull fade between red and green:

We can even make the skull change direction as it moves around the high score table:

You can access the JavaScript tab where you can adjust the SVG source code and try it yourself.

Elephant in the room (Ahem, Firefox)

When I first got it to work, I was so happy. However, there are some things you should pay attention to. First and most important point is that for some reason, Firefox does not render animations on edges of borders, only animations on corners:

Interestingly, if I change the SVG to a GIF with the same animation, it works perfectly. However, edge animations on Chrome stop! ?‍♂️

Anyway, this seems to be a browser error, because Firefox does animate the edges if we change border-image-repeat property to stretch , but the result is a bit weird (although it might fit the topic of the page):

Changing border-image-repeat value to space also seems to work, but only if the width of the element is not an integer multiple of the skull size (in this case 32 pixels), which means there will be some gaps in the animation.

I also found that when the container size is not a multiple of the patch size (in this case 32 pixels), there are some visual problems like tiny black lines on the skull. I suspect this has something to do with some floating point rounding problem. It also tends to break when zoomed in.

Not perfect, but absolutely finished! If you want to see the final version, you can visit the high score page of "The Skull". Hopefully you will see your name soon!

The above is the detailed content of How to Animate a SVG with border-image. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Demystifying Screen Readers: Accessible Forms & Best PracticesDemystifying Screen Readers: Accessible Forms & Best PracticesMar 08, 2025 am 09:45 AM

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

Create a JavaScript Contact Form With the Smart Forms FrameworkCreate a JavaScript Contact Form With the Smart Forms FrameworkMar 07, 2025 am 11:33 AM

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

Adding Box Shadows to WordPress Blocks and ElementsAdding Box Shadows to WordPress Blocks and ElementsMar 09, 2025 pm 12:53 PM

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Working With GraphQL CachingWorking With GraphQL CachingMar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte TransitionMaking Your First Custom Svelte TransitionMar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Classy and Cool Custom CSS Scrollbars: A ShowcaseClassy and Cool Custom CSS Scrollbars: A ShowcaseMar 10, 2025 am 11:37 AM

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand

Show, Don't TellShow, Don't TellMar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

What the Heck Are npm Commands?What the Heck Are npm Commands?Mar 15, 2025 am 11:36 AM

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.