Interwikiカラーフィルタリングテスト

Interwikiにはカラーフィルタリングをかける事ができます。

.scpnet-interwiki-frame {
animation: hue-rotate 15s linear infinite;
    height: 300px;
    border: none;
}
 
@keyframes hue-rotate {
  from {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  to {
    -webkit-filter: hue-rotate(360deg);
    -moz-filter: hue-rotate(360deg);
    -ms-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License