我创建了一个简短的例子over here。
在点击链接时调用亮点。这是CSS(没有供应商前缀):
@keyframes highlight { 0% { background: red } 100% { background: none; } } #highlight:target { animation: highlight 1s; }