Main Page: Difference between revisions

From yangwa
No edit summary
No edit summary
Line 17: Line 17:
You are now logged in. This is the main page content visible only to authenticated users.
You are now logged in. This is the main page content visible only to authenticated users.
}}
}}
<style>
@keyframes floatDNA {
  0%  { transform: translateY(0px) rotate(0deg); opacity: 1; }
  50%  { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
  100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
}
.floating-dna {
  position: absolute;
  font-size: 28px;
  animation: floatDNA 5s ease-in-out infinite;
}
.dna1 {
  top: 80px;
  left: 20%;
  animation-delay: 0s;
}
.dna2 {
  top: 140px;
  left: 50%;
  animation-delay: 1s;
}
.dna3 {
  top: 200px;
  left: 75%;
  animation-delay: 2s;
}
</style>
<div class="floating-dna dna1">🧬</div>
<div class="floating-dna dna2">🧬</div>
<div class="floating-dna dna3">🧬</div>

Revision as of 22:20, 11 April 2025

👋 Welcome to the Lab of Synthetic Biopharmaceutics

Log in to access the Labwiki
© 2025 Yangwa Lab. 蜀ICP备2025131392号

<style> @keyframes floatDNA {

 0%   { transform: translateY(0px) rotate(0deg); opacity: 1; }
 50%  { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }

} .floating-dna {

 position: absolute;
 font-size: 28px;
 animation: floatDNA 5s ease-in-out infinite;

} .dna1 {

 top: 80px;
 left: 20%;
 animation-delay: 0s;

} .dna2 {

 top: 140px;
 left: 50%;
 animation-delay: 1s;

} .dna3 {

 top: 200px;
 left: 75%;
 animation-delay: 2s;

} </style>

🧬
🧬
🧬