• uniapp制作——交友盲盒


            在小程序端可以有很多好玩的小玩意,目前网上比较有趣的就是有一个交友盲盒,能抽出和找出对象的一个有趣的小程序,所以今天给大家带来用uniapp搭建的交友盲盒,大家再根据自己的情况去搭建自己的后端和数据库来完成自己的一个小项目

            首先大家要下载好hbuider来编写我们的uniapp项目,这个之前就介绍过了,没有安装的自行去安装一下就可以了。

            环境准备好了之后,就可以开始动手准备了,先看一下最终的结果:

    基本上pc端和小程序端是大同小异,样式方面没有太大的差别,下面就是代码的分析。

    这里我就不去分析一条条代码是什么意思,给大家自行去分析,因为项目比较简单,大家有一定基础就可以看得明白,因为没有功能,大家可以根据自己的后端接口来完善功能的需求达到自己的目的。 

    首页页面布局:

    1. <script>
    2. export default {
    3. data() {
    4. return {
    5. title: 'Hello'
    6. }
    7. },
    8. onLoad() {
    9. },
    10. methods: {
    11. wumen() {
    12. uni.showToast({
    13. title: "成功"
    14. })
    15. }
    16. }
    17. }
    18. script>
    19. <style scoped lang="scss">
    20. .imgwuman {
    21. image {
    22. width: 800rpx;
    23. height: 800rpx;
    24. }
    25. position: absolute;
    26. top: -78%;
    27. left: -68%;
    28. }
    29. .imgman {
    30. image {
    31. width: 800rpx;
    32. height: 800rpx;
    33. }
    34. position: absolute;
    35. top: -78%;
    36. left: -65%;
    37. }
    38. .top {
    39. width: 100%;
    40. height: 300rpx;
    41. /* background-color: pink; */
    42. border-radius: 50rpx;
    43. box-sizing: border-box;
    44. }
    45. .top image {
    46. box-sizing: border-box;
    47. width: 100%;
    48. height: 100%;
    49. }
    50. .subject {
    51. height: 600rpx;
    52. margin-top: 10%;
    53. // background-color: aliceblue;
    54. display: flex;
    55. justify-content: center;
    56. align-items: center;
    57. }
    58. .subject .left {
    59. position: relative;
    60. width: 45%;
    61. height: 550rpx;
    62. background-color: #119DFC;
    63. margin-right: 30rpx;
    64. }
    65. .subject .left {
    66. border-radius: 20rpx;
    67. .chair {
    68. width: 200rpx;
    69. height: 30rpx;
    70. border-radius: 50rpx;
    71. background-color: #fff;
    72. margin: 50rpx auto;
    73. }
    74. .man {
    75. font-size: 50rpx;
    76. font-family: "宋体";
    77. text-align: center;
    78. color: #fff;
    79. }
    80. }
    81. .subject .right {
    82. position: relative;
    83. border-radius: 20rpx;
    84. width: 45%;
    85. height: 550rpx;
    86. background-color: #FF538F;
    87. }
    88. .subject .right {
    89. border-radius: 20rpx;
    90. .chair {
    91. width: 200rpx;
    92. height: 30rpx;
    93. border-radius: 50rpx;
    94. background-color: #fff;
    95. margin: 50rpx auto;
    96. }
    97. .man {
    98. font-size: 50rpx;
    99. font-family: "宋体";
    100. text-align: center;
    101. color: #fff;
    102. }
    103. }
    104. .enter,
    105. .out {
    106. position: relative;
    107. z-index: 9;
    108. width: 300rpx;
    109. height: 100rpx;
    110. background-color: #000;
    111. color: #fff;
    112. text-align: center;
    113. border-radius: 15rpx;
    114. margin: 0 auto;
    115. margin-top: 18%;
    116. line-height: 100rpx;
    117. }
    118. .sub {
    119. width: 90%;
    120. height: 100rpx;
    121. background-color: #FA91A8;
    122. margin: 0 auto;
    123. margin-top: 5%;
    124. border-radius: 50rpx;
    125. text-align: center;
    126. line-height: 100rpx;
    127. }
    128. style>

    关于我的页面布局:

    1. <template>
    2. <view>
    3. view>
    4. template>
    5. <script>
    6. export default {
    7. data() {
    8. return {
    9. }
    10. },
    11. methods: {
    12. }
    13. }
    14. script>
    15. <style>
    16. style>

  • 相关阅读:
    Python数据容器(字典)
    kafka配合ElasticStack技术栈的搭配使用
    pandas入门 数据结构
    前端document的方法合集
    kubernetes学习笔记-namespace
    解决k8s通过traefik暴露域名失败并报错:Connection Refused的问题
    从虚拟化走向云原生,红帽OpenShift“一手托两家”
    架构整洁之道摘录
    计算机毕业设计Java球馆预约管理系统(源代码+数据库+系统+lw文档)
    java毕业设计校园快递柜存取件系统mybatis+源码+调试部署+系统+数据库+lw
  • 原文地址:https://blog.csdn.net/qq_63656102/article/details/132693713