wheelnav滚动菜单效果
代码语言:html
所属分类:菜单导航
代码描述:wheelnav滚动菜单效果
代码标签: 效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> body { background-color: #191919; font-family: "Lato", "Lucida Grande", "Lucida Sans Unicode", Tahoma, Sans-Serif; font-size: 19.5px; margin: 0; } header { height: 64px; font-size: large; text-align: center; background-color: #000; color: #fff; margin-bottom: 30px; display: flex; justify-content: center; align-items: center; } header a { background-color: #000; color: #fff; text-decoration: underline; padding: 0 3px 0 3px; } header a:hover { background-color: #fff; color: #000; text-decoration: none; } footer { font-size: smaller; text-align: center; background-color: #000; color: #fff; padding: 5px; margin-top: 30px; } footer a { background-color: #000; color: #fff; text-decoration: underline; padding: 0 3px 0 3px; } footer a:hover { background-color: #fff; color: #000; text-decoration: none; } #wheelDiv { height: 600px; width: 600px; margin: 0 auto auto; } #wheelDiv>svg { height: 100%; width: 100%; } @media (max-width: 600px) { #wheelDiv { width: 100%; height: 100%; } } </style> </head> <body translate="no&q.........完整代码请登录后点击上方下载按钮下载查看
网友评论0