本篇文章给大家带来的内容是关于html实现像百度的首页效果一样的背景图(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
之前在百度知道我提问过这一个问题,后来解决了。不过好多人来问我时怎么解决的,源码。
其实很简单。这里我贴一下代码。有需要的小伙伴不用再加我qq了,直接来这里取吧。
里面的图片是我随便找的。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style> html, body { height: 100%; } body { margin: 0; background-repeat: no-repeat; background-size: cover; background-position: center; background-attachment: fixed; background-image: url(http://pic1.win4000.com/wallpaper/b/589d687069ed9.jpg); } h1{ height: 100%; width: 100%; margin: 0; padding: 0; color:#fff; background-color: rgba(0,0,0,0.5); display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; justify-content: center; align-items: center; } </style> </head> <body> <h1>按住Ctrl+滚动滚轮:可以看到文字缩放,背景不动</h1> </body> </html>
作者:不言
本篇文章带大家了解一下Node中的事件,聊聊一下事件驱动程序和EventEmitter 类,希望对大家有所帮助!Nodejs 是单进程单线程应用...
显示 隐藏DIV的技巧使用bootstrap的12分栅来演示style=display: none; 隐藏后释放占用的页面空间document.getElementById(typedi...
bootstrap怎么适配bootstrap屏幕适配为了让 Bootstrap 开发的网站对移动设备友好,确保适当的绘制和触屏缩放,需要在网页的 head...
css实现文本多行省略号的方法:1、给文本元素添加“display: -webkit-box;”样式;2、给文本元素添加“ -webkit-box-orient: ver...
jquery给input添加只读属性的方法:1、使用“$(input)”语句获取input对象;2、使用attr()给获取到的input对象添加只读属性,语...