uParas.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .w-padding {
  2. padding: 9px 0px;
  3. }
  4. .w-width120 {
  5. width: 120px !important;
  6. }
  7. .w-m150 {
  8. margin-left: 150px !important;
  9. }
  10. /*ztree*/
  11. .menuContent {
  12. display: none;
  13. position: absolute;
  14. top: 33px;
  15. /*left: 15px;*/
  16. background-color: #fff;
  17. z-index: 2000;
  18. border: 1px solid #ccc;
  19. }
  20. /*背景色闪烁*/
  21. .notify .heartbit {
  22. background-color: red;
  23. position: absolute;
  24. height: 28px;
  25. width: 28px;
  26. z-index: 10;
  27. -webkit-border-radius: 70px !important;
  28. -moz-border-radius: 70px !important;
  29. -ms-border-radius: 70px !important;
  30. -o-border-radius: 70px !important;
  31. border: none;
  32. box-shadow: 0px 0px 5px red;
  33. border-radius: 70px 70px 70px 70px !important;
  34. animation: heartbit 1s ease-out;
  35. -moz-animation: heartbit 1s ease-out;
  36. -moz-animation-iteration-count: infinite;
  37. -o-animation: heartbit 1s ease-out;
  38. -o-animation-iteration-count: infinite;
  39. -webkit-animation: heartbit 1s ease-out;
  40. -ms-animation: heartbit 1s ease-out;
  41. -webkit-animation-iteration-count: infinite;
  42. animation-iteration-count: infinite
  43. }
  44. @-moz-keyframes heartbit {
  45. 0% {
  46. -moz-transform: scale(0);
  47. opacity: 0
  48. }
  49. 25% {
  50. -moz-transform: scale(0.1);
  51. opacity: .1
  52. }
  53. 50% {
  54. -moz-transform: scale(0.5);
  55. opacity: .3
  56. }
  57. 75% {
  58. -moz-transform: scale(0.8);
  59. opacity: .5
  60. }
  61. 100% {
  62. -moz-transform: scale(1);
  63. opacity: 0
  64. }
  65. }
  66. @-webkit-keyframes heartbit {
  67. 0% {
  68. -webkit-transform: scale(0);
  69. opacity: 0
  70. }
  71. 25% {
  72. -webkit-transform: scale(0.1);
  73. opacity: .1
  74. }
  75. 50% {
  76. -webkit-transform: scale(0.5);
  77. opacity: .3
  78. }
  79. 75% {
  80. -webkit-transform: scale(0.8);
  81. opacity: .5
  82. }
  83. 100% {
  84. -webkit-transform: scale(1);
  85. opacity: 0
  86. }
  87. }
  88. @-ms-keyframes heartbit {
  89. 0% {
  90. -ms-transform: scale(0);
  91. opacity: 0
  92. }
  93. 25% {
  94. -ms-transform: scale(0.1);
  95. opacity: .1
  96. }
  97. 50% {
  98. -ms-transform: scale(0.5);
  99. opacity: .3
  100. }
  101. 75% {
  102. -ms-transform: scale(0.8);
  103. opacity: .5
  104. }
  105. 100% {
  106. -ms-transform: scale(1);
  107. opacity: 0
  108. }
  109. }