-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathScrollingLogos.css
50 lines (44 loc) · 1.22 KB
/
ScrollingLogos.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.scrolling-logos-container {
overflow: hidden;
width: 100%; /* Ensure it spans full width of the page */
padding: 20px 0;
background-color: #f8f8f8;
}
.scrolling-logos-track {
display: flex;
gap: 40px; /* Set space between logos */
animation: scroll 30s linear infinite; /* Continuous scrolling */
}
.logo-item {
display: inline-block;
justify-content: center; /* Center the track horizontally */
align-items: center;
}
.logo-item img {
max-height: 80px; /* Set max height */
height: auto;
width: auto; /* Ensure aspect ratio is maintained */
filter: grayscale(100%); /* Apply grayscale */
justify-content: center;
align-items: center;
transition: filter 0.3s ease; /* Smooth transition for hover effect */
}
.logo-item img:hover {
filter: grayscale(0%); /* Restore original color on hover */
}
@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}
/* Duplicate the logos to make the scrolling seamless */
.scrolling-logos-track::after {
content: "";
display: block;
position: absolute;
white-space: nowrap;
transform: translateX(100%); /* Start where the original logos end */
}