css+js实现排行榜进度条动画效果代码
代码语言:html
所属分类:动画
代码描述:css+js实现排行榜进度条动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>动态排名进度条</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background-color: #f0f0f0; } .ranking-item { display: flex; align-items: center; margin-bottom: 20px; background-color: white; padding: 10px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .rank { font-size: 24px; font-weight: bold; margin-right: 15px; width: 30px; text-align: center; } .info { flex-grow: 1; } .name { font-weight: bold; margin-bottom: 5px; } .progress-bar { height: 20px; background-color: #e0e0e0; border-radius: 10px; overflow: hidden; } .progress { height: 100%; background-color: #4CAF50; width: 0; transition: width 0.5s ease-in-out; } .score { margin-left: 10px; font-weight: bold; } </style> </head> <body> <div id="ranking-container"></div> <script> const players = [ { name: "Player 1", score: 0, finalScore: 0 }, { name: "Player 2", score: 0, finalScore: 0 }, { name: "Player 3", score: 0, finalScore: 0 }, { name: "Player 4", score: 0, finalScore: 0 }, { name: "Player 5", score: 0, finalScore: 0 } ]; let animationInterval; let updateCount = 0; const maxUpdates = 20; // 总更新次数 function initializeFinalScores() { .........完整代码请登录后点击上方下载按钮下载查看
网友评论0