简介

增加CSS片段,将RemNote右下角的问号改成可爱的看板娘!🥰

效果

20220129181451.png

使用方法

将CSS片段中的url地址换成喜爱的图片地址即可,推荐使用png透明底图片

  1. #help-button{
  2. background: url(换成图片的地址即可) no-repeat;/*图片地址*/
  3. background-size: 80px; /*图片大小*/
  4. width: 120px;/*宽度*/
  5. height: 110px;/*高度*/
  6. bottom: -20px;/*距离底部*/
  7. right: -25px;/*距离右边*/
  8. font-size:0;
  9. border:1px slolid rgba(0,0,0,0);
  10. border-color:rgba(0,0,0,0);
  11. box-shadow:none;
  12. border-radius:0;
  13. }
  14. #help-button:hover, #help-button:focus, #help-button:active {
  15. -webkit-animation-name: hvr-wobble-bottom;
  16. animation-name: hvr-wobble-bottom;
  17. -webkit-animation-duration: 1s;
  18. animation-duration: 1s;
  19. -webkit-animation-timing-function: ease-in-out;
  20. animation-timing-function: ease-in-out;
  21. -webkit-animation-iteration-count: 1;
  22. animation-iteration-count: 1;
  23. background-color:rgba(255,255,255,0)
  24. }
  25. @-webkit-keyframes hvr-wobble-bottom {
  26. 16.65% {
  27. -webkit-transform: skew(-12deg);
  28. transform: skew(-12deg);
  29. }
  30. 33.3% {
  31. -webkit-transform: skew(10deg);
  32. transform: skew(10deg);
  33. }
  34. 49.95% {
  35. -webkit-transform: skew(-6deg);
  36. transform: skew(-6deg);
  37. }
  38. 66.6% {
  39. -webkit-transform: skew(4deg);
  40. transform: skew(4deg);
  41. }
  42. 83.25% {
  43. -webkit-transform: skew(-2deg);
  44. transform: skew(-2deg);
  45. }
  46. 100% {
  47. -webkit-transform: skew(0);
  48. transform: skew(0);
  49. }
  50. }
  51. @keyframes hvr-wobble-bottom {
  52. 16.65% {
  53. -webkit-transform: skew(-12deg);
  54. transform: skew(-12deg);
  55. }
  56. 33.3% {
  57. -webkit-transform: skew(10deg);
  58. transform: skew(10deg);
  59. }
  60. 49.95% {
  61. -webkit-transform: skew(-6deg);
  62. transform: skew(-6deg);
  63. }
  64. 66.6% {
  65. -webkit-transform: skew(4deg);
  66. transform: skew(4deg);
  67. }
  68. 83.25% {
  69. -webkit-transform: skew(-2deg);
  70. transform: skew(-2deg);
  71. }
  72. 100% {
  73. -webkit-transform: skew(0);
  74. transform: skew(0);
  75. }
  76. }