我是Python / Django世界的新手。我正在寻找创建类似于以下链接的网页的帮助:
http://www.mceinsurance.com/resources/uk-motorcycle-accident-hotspots
似乎有动画,并且正在使用以下行话。
-webkit-animation
::-webkit-scrollbar
@-webkit-keyframes rotate
需要帮助来了解前端。如果必须设计类似的网站,考虑到后端将是python / django框架,那么应该选择哪个前端。
代码的脊线:
@-webkit-keyframes rotate {
from {-webkit-transform: rotate(0)}
to {-webkit-transform: rotate(360deg)}
}
::-webkit-scrollbar { height: 12px; width: 12px; background: #ccc; }
::-webkit-scrollbar-thumb { background: #999; -webkit-border-radius:
1ex; }
::-webkit-scrollbar-thumb:hover { background: #858383;}
::-webkit-scrollbar-thumb:active { background: #bd0e0e;}