创建一个国足世界排名变化图,展示了中国国家男子足球队(国足)在过去几年里的排名变化是很有意义的。这种图表可以帮助我们了解国足在国际足球舞台上的表现如何随着时间的推移而变化。
让我们看一下国足近年来的世界排名数据。我将为你生成一个图表,展示这些数据的变化趋势。稍等片刻。```html
body {
fontfamily: Arial, sansserif;
backgroundcolor: f0f0f0;
padding: 20px;
}
.container {
maxwidth: 800px;
margin: 20px auto;
backgroundcolor: fff;
padding: 20px;
borderradius: 8px;
boxshadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
textalign: center;
}
document.addEventListener("DOMContentLoaded", function() {
var ctx = document.getElementById('rankingChart').getContext('2d');
var myChart = new Chart(ctx, {
type: 'line',
data: {
labels: ['2016', '2017', '2018', '2019', '2020', '2021', '2022'],
datasets: [{
label: 'FIFA世界排名',
data: [81, 75, 75, 73, 76, 75, 77],
fill: false,
borderColor: 'rgb(54, 162, 235)',
tension: 0.1
}]
},
options: {
scales: {
y: {
beginAtZero: false,
title: {
display: true,
text: 'FIFA世界排名'
}
},
x: {
title: {
display: true,
text: '年份'
}
}
}
}
});
});