图片不同方向悬停显示不同文字

栏目: 后端 · 前端 · 发布时间: 5年前

核心属性

opacity: 0 隐藏四个方向的文字块,但是可以相应鼠标的悬停

z-index 提高显示文字块的层级,防止触发其他文字块

left: 90%/-90%/top: 90%/-90% 四个方向分别留下10%的触发区域

:hover + left/top 文字块从不同的方向显示

background: hsla( ) 背景颜色半透明

  1. <div class=multi-hover>
  2. <span>螺旋星系NGC1309</span>
  3. <span>距地球约1.2亿光年</span>
  4. <span>塞普希德变星的所在地</span>
  5. <span>厄里达努斯星系云的成员</span>
  6. <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/ngc-1309-2x.jpg" alt="Photograph of NGC 1309">
  7. </div>
  1. .multi-hover {
  2. position: relative;
  3. max-width: 500px;
  4. margin: 0 auto;
  5. line-height: 0;
  6. font-family: "KaiTi", sans-serif;
  7. overflow: hidden;
  8. }
  9. .multi-hover img {
  10. max-width: 100%;
  11. }
  12. .multi-hover span {
  13. box-sizing: border-box;
  14. position: absolute;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. width: 100%;
  19. height: 100%;
  20. padding: 15%;
  21. color: white;
  22. font-size: 2em;
  23. line-height: 1.5;
  24. font-weight: 100;
  25. opacity: 0;
  26. z-index: 2;
  27. transition: .3s linear;
  28. -webkit-touch-callout: none;
  29. -webkit-user-select: none;
  30. }
  31. .multi-hover span:nth-child(1) {
  32. top: 0;
  33. left: 90%;
  34. background: hsla(0,70%,50%,0.6);
  35. }
  36. .multi-hover span:nth-child(2) {
  37. top: -90%;
  38. left: 0;
  39. background: hsla(90,70%,50%,0.6);
  40. }
  41. .multi-hover span:nth-child(3) {
  42. top: 0;
  43. left: -90%;
  44. background: hsla(180,70%,50%,0.6);
  45. }
  46. .multi-hover span:nth-child(4) {
  47. top: 90%;
  48. left: 0;
  49. background: hsla(270,70%,50%,0.6);
  50. }
  51. .multi-hover span:hover {
  52. opacity: 1;
  53. }
  54. .multi-hover span:nth-child(odd):hover {
  55. left: 0;
  56. z-index: 3;
  57. }
  58. .multi-hover span:nth-child(even):hover {
  59. top: 0;
  60. z-index: 3;
  61. }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Web 2.0 Heroes

Web 2.0 Heroes

Bradley L. Jones / Wiley / 2008-04-14 / USD 24.99

Web 2.0 may be an elusive concept, but one thing is certain: using the Web as merely a means of retrieving and displaying information is history. Today?s Web is immediate, interactive, innovative. It ......一起来看看 《Web 2.0 Heroes》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具