I have this GIF, that I want to use for a border:
But when I apply the following class to a paragraph, only the corners animate. How do I fix this so that the entire border scrolls?
.border {
border: 25px solid transparent;
padding: 15px;
border-image-source: url(https://hosting.pysnek.repl.co/assets/archive/animBorder.gif);
border-image-repeat: round;
border-image-slice: 30;
}
<p class="border">A paragraph.</p>
Instead of using GIF animation, I suggest you to use SVG animation. Take a look at Code snippet.
At this example, you can see SVG image, where animations defined for each region, take a look at this article for more details.
In inline SVG you can also find comments.
Base64 SVG data using only like an example, you can create SVG image and use it like simple image in
border-image-source: url(/path/to/image.svg);