css实现立体空间穿越背景效果
代码语言:html
所属分类:背景
代码描述:css实现立体空间穿越背景效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>BFW NEW PAGE</title> <style> html,body { height: 100%; margin: 0; font-family: arial,microsoft yahei; color: #fefefe } body { background-size: 100% 100%; background-position: center center; background-repeat: no-repeat; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; background-color: #002878 } #fileWrapper { transition: all .5s ease } #fileWrapper:hover {.........完整代码请登录后点击上方下载按钮下载查看
网友评论0