to-next.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <div
  3. class="to-next"
  4. :style="{ left: btnLeft + 'px' }"
  5. @click="$emit('toNext')"
  6. >
  7. <img src="@/assets/icon/next_unread.png" alt="" />
  8. <span>下一条未读</span>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: "ToNext",
  14. data() {
  15. return {
  16. btnLeft: 0,
  17. btnRight: 8 + 50 + 200,
  18. };
  19. },
  20. mounted() {
  21. this.btnLeft = window.innerWidth - this.btnRight;
  22. this.$resizeListenerList.push(this.setBtnLeft);
  23. },
  24. methods: {
  25. setBtnLeft() {
  26. this.btnLeft = window.innerWidth - this.btnRight;
  27. },
  28. },
  29. };
  30. </script>
  31. <style lang="scss" scoped>
  32. .to-next {
  33. width: 200px;
  34. height: 60px;
  35. background: #ffffff;
  36. border-radius: 40px;
  37. border: 1px solid #0054f7;
  38. position: fixed;
  39. bottom: 100px;
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. user-select: none;
  44. cursor: pointer;
  45. img {
  46. width: 14px;
  47. height: 14px;
  48. }
  49. span {
  50. font-size: 18px;
  51. font-weight: 500;
  52. color: #0054f7;
  53. margin-left: 10px;
  54. }
  55. }
  56. </style>