Skip to content

Commit 0b3a0c4

Browse files
committed
animation Logo
1 parent 0d6f6c7 commit 0b3a0c4

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed

content/blog/csharp/cfd-logo.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
---
2+
title: "Codefrydev Generally used Loading svg animation"
3+
author: ["PrashantUnity"]
4+
weight: 105
5+
date: 2024-07-24
6+
lastmod: 2024-07-24
7+
dateString: July 2025
8+
description: "CFD- Animated Loading Animated animation"
9+
#canonicalURL: "https://canonical.url/to/page"
10+
cover:
11+
image: "cover.jpg" # image path/url
12+
alt: "Download Logo" # alt text
13+
#caption: "Optical Character Recognition" #display caption under cover
14+
15+
tags: [ "NET","C Sharp", "Input","output","Chapter 3","Comment","variable"]
16+
keywords: [ "Code Fry Dev", "codefrydev", "CFD","NET","C Sharp"]
17+
draft: false #make this false to publicly Available
18+
---
19+
20+
## Loading Animation
21+
22+
```svg
23+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
24+
<svg width="300" height="300" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
25+
<text x="1" y="29" font-size="7" fill="white" font-family="Ubuntu">CFD AI</text>
26+
<style>
27+
.spinner {
28+
animation: move 2.4s linear infinite;
29+
}
30+
31+
.delay1 {
32+
animation-delay: -2.4s;
33+
fill: #9BFAFF;
34+
}
35+
36+
.delay2 {
37+
animation-delay: -1.6s;
38+
fill: #FFBD4D;
39+
}
40+
41+
.delay3 {
42+
animation-delay: -0.8s;
43+
fill: #FFF8B3;
44+
}
45+
46+
@keyframes move {
47+
0%, 8.33% {
48+
x: 2px;
49+
y: 2px;
50+
}
51+
25% {
52+
x: 13px;
53+
y: 2px;
54+
}
55+
33.3%, 50% {
56+
x: 13px;
57+
y: 13px;
58+
}
59+
58.33%, 75% {
60+
x: 2px;
61+
y: 13px;
62+
}
63+
83.33%, 100% {
64+
x: 2px;
65+
y: 2px;
66+
}
67+
}
68+
</style>
69+
70+
<rect class="spinner delay1" x="2" y="2" rx="2" width="10" height="10"/>
71+
<rect class="spinner delay2" x="2" y="2" rx="2" width="10" height="10"/>
72+
<rect class="spinner delay3" x="2" y="2" rx="2" width="10" height="10"/>
73+
</svg>
74+
```

0 commit comments

Comments
 (0)