10.点透事件.css 884 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. /* 触摸行为 */
  5. touch-action: none;
  6. }
  7. #container {
  8. width: 100%;
  9. position: relative;
  10. }
  11. #under {
  12. width: 90%;
  13. height: 500px;
  14. text-align: center;
  15. line-height: 500px;
  16. background: #eee;
  17. margin: 30px auto 1000px;
  18. }
  19. #dialog {
  20. width: 80%;
  21. background: #fff;
  22. height: 240px;
  23. position: absolute;
  24. top: 50%;
  25. left: 50%;
  26. margin-top: -120px;
  27. margin-left: -40%;
  28. z-index: 99;
  29. }
  30. #title {
  31. width: 100%;
  32. height: 200px;
  33. line-height: 200px;
  34. text-align: center;
  35. }
  36. #action {
  37. position: absolute;
  38. bottom: 30px;
  39. left: 34%;
  40. }
  41. #close {
  42. border: 0;
  43. width: 100px;
  44. height: 35px;
  45. background: #00f;
  46. color: #fff;
  47. }
  48. #mask {
  49. width: 100%;
  50. background: rgba(0,0,0,.5);
  51. position: fixed;
  52. top: 0;
  53. left: 0;
  54. right: 0;
  55. bottom: 0;
  56. }