text.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //text
  2. .del{
  3. text-decoration-line: line-through;
  4. }
  5. .flicker{
  6. font-size: 1em;
  7. color: red;
  8. animation: changeshadow 2s ease-in infinite;
  9. -webkit-animation: changeshadow 2s linear infinite;
  10. -moz-animation: changeshadow 2s linear infinite;
  11. -ms-animation: changeshadow 2s linear infinite;
  12. -o-animation: changeshadow 2s linear infinite;
  13. }
  14. @keyframes changeshadow {
  15. 0%{ text-shadow: 0 0 4px red}
  16. 50%{ text-shadow: 0 0 40px red}
  17. 100%{ text-shadow: 0 0 4px red}
  18. }
  19. /* 添加兼容性前缀 */
  20. @-webkit-keyframes changeshadow {
  21. 0%{ text-shadow: 0 0 4px red}
  22. 50%{ text-shadow: 0 0 40px red}
  23. 100%{ text-shadow: 0 0 4px red}
  24. }
  25. @-moz-keyframes changeshadow {
  26. 0%{ text-shadow: 0 0 4px red}
  27. 50%{ text-shadow: 0 0 40px red}
  28. 100%{ text-shadow: 0 0 4px red}
  29. }
  30. @-ms-keyframes changeshadow {
  31. 0%{ text-shadow: 0 0 4px red}
  32. 50%{ text-shadow: 0 0 40px red}
  33. 100%{ text-shadow: 0 0 4px red}
  34. }
  35. @-o-keyframes changeshadow {
  36. 0%{ text-shadow: 0 0 4px red}
  37. 50%{ text-shadow: 0 0 40px red}
  38. 100%{ text-shadow: 0 0 4px red}
  39. }
  40. .noselect {
  41. -webkit-touch-callout: none; /* iOS Safari */
  42. -webkit-user-select: none; /* Chrome/Safari/Opera */
  43. -khtml-user-select: none; /* Konqueror */
  44. -moz-user-select: none; /* Firefox */
  45. -ms-user-select: none; /* Internet Explorer/Edge */
  46. user-select: none;
  47. }
  48. .fa-sort{
  49. opacity: 0.3;
  50. }
  51. .text-letter{
  52. word-break: break-all
  53. }