canvas实现球形空间变换动画效果代码
代码语言:html
所属分类:动画
代码描述:canvas实现球形空间变换动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> /********************************************* * GLOBAL *********************************************/ body, html { overflow: hidden; font-family: Helvetica, Arial, sans-serif; color: #fff; font-size: 11px; background: #010c12; } /********************************************* * HEADER *********************************************/ header { position: relative; width: 100%; height: 27px; margin: 0; padding: 0 8px 8px 8px; overflow: hidden; z-index: 5; background: rgba( 60, 60, 60, 0.5 ); color: #eee; -webkit-transition: height .22s ease-out; -moz-transition: height .22s ease-out; -o-transition: height .22s ease-out; transition: height .22s ease-out; } header.open { height: 165px; } header h1 { font-family: Molengo, Helvetic.........完整代码请登录后点击上方下载按钮下载查看
网友评论0