Posted in svg
6544
8:46 am, February 17, 2022
 

svg animated line testing - shooting star right

I found this on a random site i was looking at it took me a while to extract the animation, but i found it and its working below. 

There is shoot right and also shoot left, if you are that way inclined. 

Looks cool you could add it as a nice animation underline or something similar.

the left animated one is a bit broken, you could probably just rotate the element 180 and the use the same animation and it would go the other way, or move the svg over to the right so it animates to the left.

HTML

<svg xmlns="http://www.w3.org/2000/svg" width="2840" height="2" viewBox="0 0 2840 2" fill="none" class="relative">
<path d="M-15 1H2855" stroke="white" stroke-opacity="0.15" stroke-linejoin="round" stroke-dasharray="1 5"></path>
<path d="M0 1H33" stroke="url(#footer_grad)" stroke-dashoffset="0" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" id="footer-shoot"></path>
<defs>
  <linearGradient id="footer_grad" x1="0" y1="2" x2="33" y2="2" gradientUnits="userSpaceOnUse">
    <stop offset="5%" stop-color="#61CDEF" stop-opacity="0"></stop>
    <stop offset="95%" stop-color="#61CDEF"></stop>
  </linearGradient>
</defs>
</svg>


<svg xmlns="http://www.w3.org/2000/svg" width="2840" height="2" viewBox="0 0 2840 2" fill="none" class="relative">
<path d="M-15 1H2855" stroke="white" stroke-opacity="0.15" stroke-linejoin="round" stroke-dasharray="1 5"></path>
<path d="M0 1H33" stroke="url(#footer_grad)" stroke-dashoffset="0" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" id="footer-shoot-left"></path>
<defs>
  <linearGradient id="footer_grad" x1="0" y1="2" x2="33" y2="2" gradientUnits="userSpaceOnUse">
    <stop offset="95%" stop-color="#61CDEF" stop-opacity="0"></stop>
    <stop offset="5%" stop-color="#61CDEF"></stop>
  </linearGradient>
</defs>
</svg>

CSS

#footer-shoot {
    -webkit-animation: shoot-right 3s ease-in-out infinite;
    animation: shoot-right 3s ease-in-out infinite;
}
#footer-shoot-left {
      -webkit-animation: shoot-left 3s ease-in-out infinite;
    animation: shoot-left 3s ease-in-out infinite;
}
@keyframes shoot-right{0%{stroke-dashoffset:450;opacity:1;transform:translateZ(0)}to{stroke-dashoffset:0;opacity:1;transform:translate3D(100%,0,0)}}

@keyframes shoot-left{0%{stroke-dashoffset:450;opacity:.25;transform:translateZ(0)}to{stroke-dashoffset:0;opacity:1;transform:translate3D(-100%,0,0)}}

View Statistics
This Week
120
This Month
616
This Year
799

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote

"Olivia, my eldest daughter, caught measles when she was seven years old. As the illness took its usual course I can remember reading to her often in bed and not feeling particularly alarmed about it. Then one morning, when she was well on the road to recovery, I was sitting on her bed showing her how to fashion little animals out of coloured pipe-cleaners, and when it came to her turn to make one herself, I noticed that her fingers and her mind were not working together and she couldn’t do anything. 'Are you feeling all right?' I asked her. 'I feel all sleepy,' she said. In an hour, she was unconscious. In twelve hours she was dead. The measles had turned into a terrible thing called measles encephalitis and there was nothing the doctors could do to save her. That was...in 1962, but even now, if a child with measles happens to develop the same deadly reaction from measles as Olivia did, there would still be nothing the doctors could do to help her. On the other hand, there is today something that parents can do to make sure that this sort of tragedy does not happen to a child of theirs. They can insist that their child is immunised against measles. ...I dedicated two of my books to Olivia, the first was ‘James and the Giant Peach’. That was when she was still alive. The second was ‘The BFG’, dedicated to her memory after she had died from measles. You will see her name at the beginning of each of these books. And I know how happy she would be if only she could know that her death had helped to save a good deal of illness and death among other children."

I just checked google books for BFG, and the dedication is there. 

https://www.google.com.au/books/edition/_/quybcXrFhCIC?hl=en&gbpv=1 


Roald Dahl, 1986
Random CSS Property

margin-block

The margin-block CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
margin-block css reference