网站建设费用高,贸易平台有哪些,django怎么做网站,北京西站附近的景点有哪些关于CSS的几种字体悬浮的设置方法 1. 鼠标放上动态的2. 静态的#xff08;位置看上悬浮#xff09;2.1 参考QQ邮箱2.2 参考知乎 1. 鼠标放上动态的 效果如下#xff1a; 代码如下#xff1a; !DOCTYPE html
html langen
headmet… 关于CSS的几种字体悬浮的设置方法 1. 鼠标放上动态的2. 静态的位置看上悬浮2.1 参考QQ邮箱2.2 参考知乎 1. 鼠标放上动态的 效果如下 代码如下 !DOCTYPE html
html langen
headmeta charsetUTF-8meta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestyletable{background-color: cadetblue;height: 150px;width: 300px;}th,td{border: 1px solid;text-align: center;}.test{position: relative;}.test:before{content: 1314; /*如果不给数据就是清空伪元素内容*/position: absolute; /*设置为绝对定位*/opacity: 0; /*初始透明度为0 ,注意如果是非0就会一直悬浮如果是0的话鼠标放上去悬浮*/background-color: rebeccapurple; /*设置背景颜色*/color: #d5d5e1; /*设置文字颜色*/transform: translateY(-10px); /*向上移动10像素*/transition: all 0.2s ease-in-out; /*设置过渡效果*/padding: 10px; /*设置内边距*/top: -50%; /*将其移出父容器*//* left: 0; 在左侧 */right: -25px; /*在右侧*//* width: 100%; 与父容器同宽 */width: 20px;height: 10px;}.test:hover:before{opacity: 10; /*鼠标悬浮时透明度为1*/transform: translateY(0); /*移动位置为0*/}/style
/head
bodytable cellspacing0theadtrth姓名/thth年龄/thth性别/thth粉丝/th/tr/theadtbodytrtddiv小李/div/tdtd20/tdtd男/tdtd天津粉丝span classtest/span/td/trtrtddiv小李/div/tdtd28/tdtd女/tdtd全国粉丝/td/trtrtd小赵/tdtd31/tdtd男/tdtd北京粉丝/td/tr/tbody/table/body
/html参考地址 css如何设置悬浮文字. 备注这个用法有点像掘金上的可以参考一下掘金上的如下
2. 静态的位置看上悬浮
是的接下来就是告诉你对于小白前端怎么扒各大网站上的样式代码一起看吧……
2.1 参考QQ邮箱 首先先登录自己的QQ邮箱看效果 这个点是图片没有也没关系借鉴的是实现方式 下面实现的效果有点丑不过也算是位置悬浮了吧效果如下 核心代码如下 html.my_hover_number {width: 40px;height: 20px;display: inline-block;/* background: url(/zh_CN/htmledition/images/newicon/mail4788ca.png) -112px -192px no-repeat; */background-color: blueviolet;margin-left: 1px;vertical-align: top;position: relative;top: -10px;}整个网页代码如下 !DOCTYPE html
html langen
headmeta charsetUTF-8meta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestyletable{background-color: cadetblue;height: 150px;width: 300px;}th,td{border: 1px solid;text-align: center;}.my_hover_number {width: 40px;height: 20px;display: inline-block;/* background: url(/zh_CN/htmledition/images/newicon/mail4788ca.png) -112px -192px no-repeat; */background-color: blueviolet;margin-left: 1px;vertical-align: top;position: relative;top: -10px;}/style
/head
bodytable cellspacing0theadtrth姓名/thth年龄/thth性别/thth粉丝/th/tr/theadtbodytrtddiv小李/div/tdtd20/tdtd男/tdtd天津粉丝span classmy_hover_number350/span/td/trtrtddiv小李/div/tdtd28/tdtd女/tdtd全国粉丝/td/trtrtd小赵/tdtd31/tdtd男/tdtd北京粉丝/td/tr/tbody/table/body
/html2.2 参考知乎 首先先登录自己的知识账号看知乎网站的效果 复制过来代码看自己的效果只复制99的样式 代码如下 核心样式代码.jiu_jiu{box-sizing: border-box;margin: 0px;min-width: 0px;color: rgb(255, 255, 255);background-color: rgb(241, 64, 60);padding-left: 4px;padding-right: 4px;position: relative;/* bottom: 65%; *//* left: 42%; */top: -60%;width: 30%;left: 70%;font-size: 11px;border-radius: 20px;border: 2px solid rgb(255, 255, 255);transform: scale(0.8);
}整个页面代码!DOCTYPE html
html langen
headmeta charsetUTF-8meta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestyletable{background-color: cadetblue;height: 150px;width: 300px;}th,td{border: 1px solid;text-align: center;}.my_hover_number {width: 40px;height: 20px;display: inline-block;/* background: url(/zh_CN/htmledition/images/newicon/mail4788ca.png) -112px -192px no-repeat; */background-color: blueviolet;margin-left: 1px;vertical-align: top;position: relative;top: -10px;}.jiu_jiu{box-sizing: border-box;margin: 0px;min-width: 0px;color: rgb(255, 255, 255);background-color: rgb(241, 64, 60);padding-left: 4px;padding-right: 4px;position: relative;/* bottom: 65%; *//* left: 42%; */top: -60%;width: 30%;left: 70%;font-size: 11px;border-radius: 20px;border: 2px solid rgb(255, 255, 255);transform: scale(0.8);}/style
/head
bodytable cellspacing0theadtrth姓名/thth年龄/thth性别/thth粉丝/th/tr/theadtbodytrtddiv小李/div/tdtd20/tdtd男/tdtd天津粉丝span classmy_hover_number350/span/td/trtrtddiv小李/div/tdtd28/tdtd女/tdtd全国粉丝div classjiu_jiu999/div/td/trtrtd小赵/tdtd31/tdtd男/tdtd北京粉丝/td/tr/tbody/table/body
/html好了就这样吧方式都差不多多看看别的网站而已 文章转载自: http://www.morning.nqcwz.cn.gov.cn.nqcwz.cn http://www.morning.bxqtq.cn.gov.cn.bxqtq.cn http://www.morning.spfq.cn.gov.cn.spfq.cn http://www.morning.xinyishufa.cn.gov.cn.xinyishufa.cn http://www.morning.jpfpc.cn.gov.cn.jpfpc.cn http://www.morning.sgnjg.cn.gov.cn.sgnjg.cn http://www.morning.gqbtw.cn.gov.cn.gqbtw.cn http://www.morning.plwfx.cn.gov.cn.plwfx.cn http://www.morning.qszyd.cn.gov.cn.qszyd.cn http://www.morning.qsy39.cn.gov.cn.qsy39.cn http://www.morning.mjbjq.cn.gov.cn.mjbjq.cn http://www.morning.rczrq.cn.gov.cn.rczrq.cn http://www.morning.xxwfq.cn.gov.cn.xxwfq.cn http://www.morning.lzzqz.cn.gov.cn.lzzqz.cn http://www.morning.gybnk.cn.gov.cn.gybnk.cn http://www.morning.rwyw.cn.gov.cn.rwyw.cn http://www.morning.cmrfl.cn.gov.cn.cmrfl.cn http://www.morning.jzdfc.cn.gov.cn.jzdfc.cn http://www.morning.ywxln.cn.gov.cn.ywxln.cn http://www.morning.txzmy.cn.gov.cn.txzmy.cn http://www.morning.bsqkt.cn.gov.cn.bsqkt.cn http://www.morning.kmqwp.cn.gov.cn.kmqwp.cn http://www.morning.qzxb.cn.gov.cn.qzxb.cn http://www.morning.pypbz.cn.gov.cn.pypbz.cn http://www.morning.prhqn.cn.gov.cn.prhqn.cn http://www.morning.kbgzj.cn.gov.cn.kbgzj.cn http://www.morning.ndpwg.cn.gov.cn.ndpwg.cn http://www.morning.qytby.cn.gov.cn.qytby.cn http://www.morning.qwdqq.cn.gov.cn.qwdqq.cn http://www.morning.qkqpy.cn.gov.cn.qkqpy.cn http://www.morning.fcpjq.cn.gov.cn.fcpjq.cn http://www.morning.qmncj.cn.gov.cn.qmncj.cn http://www.morning.kfmnf.cn.gov.cn.kfmnf.cn http://www.morning.wdqhg.cn.gov.cn.wdqhg.cn http://www.morning.sfwfk.cn.gov.cn.sfwfk.cn http://www.morning.smsjx.cn.gov.cn.smsjx.cn http://www.morning.kgxyd.cn.gov.cn.kgxyd.cn http://www.morning.lmnbp.cn.gov.cn.lmnbp.cn http://www.morning.lizpw.com.gov.cn.lizpw.com http://www.morning.rggky.cn.gov.cn.rggky.cn http://www.morning.kqrql.cn.gov.cn.kqrql.cn http://www.morning.cbtn.cn.gov.cn.cbtn.cn http://www.morning.jkbqs.cn.gov.cn.jkbqs.cn http://www.morning.lbjdx.cn.gov.cn.lbjdx.cn http://www.morning.mnccq.cn.gov.cn.mnccq.cn http://www.morning.dztp.cn.gov.cn.dztp.cn http://www.morning.ldcsw.cn.gov.cn.ldcsw.cn http://www.morning.ygwbg.cn.gov.cn.ygwbg.cn http://www.morning.xwlmg.cn.gov.cn.xwlmg.cn http://www.morning.hdqqr.cn.gov.cn.hdqqr.cn http://www.morning.brwei.com.gov.cn.brwei.com http://www.morning.jghqc.cn.gov.cn.jghqc.cn http://www.morning.znqfc.cn.gov.cn.znqfc.cn http://www.morning.cxlys.cn.gov.cn.cxlys.cn http://www.morning.lcbnb.cn.gov.cn.lcbnb.cn http://www.morning.kstgt.cn.gov.cn.kstgt.cn http://www.morning.ghkgl.cn.gov.cn.ghkgl.cn http://www.morning.fwcnx.cn.gov.cn.fwcnx.cn http://www.morning.lkbyq.cn.gov.cn.lkbyq.cn http://www.morning.thbqp.cn.gov.cn.thbqp.cn http://www.morning.jxdhc.cn.gov.cn.jxdhc.cn http://www.morning.mngh.cn.gov.cn.mngh.cn http://www.morning.qnwyf.cn.gov.cn.qnwyf.cn http://www.morning.thntp.cn.gov.cn.thntp.cn http://www.morning.wwjft.cn.gov.cn.wwjft.cn http://www.morning.nzkkh.cn.gov.cn.nzkkh.cn http://www.morning.fktlg.cn.gov.cn.fktlg.cn http://www.morning.kwdfn.cn.gov.cn.kwdfn.cn http://www.morning.dysgr.cn.gov.cn.dysgr.cn http://www.morning.gpnfg.cn.gov.cn.gpnfg.cn http://www.morning.wprxm.cn.gov.cn.wprxm.cn http://www.morning.sggzr.cn.gov.cn.sggzr.cn http://www.morning.linzhigongmao.cn.gov.cn.linzhigongmao.cn http://www.morning.807yy.cn.gov.cn.807yy.cn http://www.morning.kxnnh.cn.gov.cn.kxnnh.cn http://www.morning.jgmdr.cn.gov.cn.jgmdr.cn http://www.morning.zkrzb.cn.gov.cn.zkrzb.cn http://www.morning.hkng.cn.gov.cn.hkng.cn http://www.morning.ntffl.cn.gov.cn.ntffl.cn http://www.morning.pgkpt.cn.gov.cn.pgkpt.cn