ప్రకాశం ప్రభావం గల టెక్స్ట్ సృష్టించడానికి ఎలా:

CSS తో ప్రకాశం ప్రభావం గల టెక్స్ట్ ఉపయోగించడానికి ఎలా తెలుసుకోండి.

亲自试一试

ప్రకాశం ప్రభావం గల టెక్స్ట్ సృష్టించడానికి ఎలా తెలుసుకోండి

ఉపయోగించండి text-shadow అమరికలు నీలోని ప్రకాశం ప్రభావాన్ని సృష్టించి, కీ ఫ్రేమ్స్ తో జతగా అనిమేషన్ కలిపి పునరావృత ప్రకాశం ప్రభావాన్ని జోడించండి:

ప్రతిమానం

.glow {
  font-size: 80px;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}

亲自试一试