ElinkThings小程序蓝牙插件SDK集合:aifresh、ailink http://doc.elinkthings.com/web/#/36?page_id=127
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.wxss 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. page {
  2. color: #333;
  3. }
  4. .devices_summary {
  5. margin-top: 30px;
  6. padding: 10px;
  7. font-size: 16px;
  8. }
  9. .device_list {
  10. height: 300px;
  11. margin: 50px 5px;
  12. margin-top: 0;
  13. border: 1px solid #EEE;
  14. border-radius: 5px;
  15. width: auto;
  16. }
  17. .device_item {
  18. border-bottom: 1px solid #EEE;
  19. padding: 10px;
  20. color: #666;
  21. }
  22. .device_item_hover {
  23. background-color: rgba(0, 0, 0, .1);
  24. }
  25. .connected_info {
  26. position: fixed;
  27. bottom: 0;
  28. width: 100%;
  29. background-color: #F0F0F0;
  30. padding: 10px;
  31. padding-bottom: 20px;
  32. margin-bottom: env(safe-area-inset-bottom);
  33. font-size: 14px;
  34. min-height: 100px;
  35. box-shadow: 0px 0px 3px 0px;
  36. }
  37. .connected_info .operation {
  38. position: absolute;
  39. display: inline-block;
  40. right: 30px;
  41. }
  42. .writeInputViewBg{
  43. position: fixed;
  44. top: 0;
  45. left: 0;
  46. right: 0;
  47. bottom: 0;
  48. z-index: 1000;
  49. background-color: rgba(0,0,0,0.5);
  50. }
  51. .writeInputView{
  52. position: fixed;
  53. top: 30%;
  54. left: 50%;
  55. z-index: 1001;
  56. background-color: #fff;
  57. width: 80vw;
  58. height: 300rpx;
  59. display: flex;
  60. flex-direction: column;
  61. align-items: center;
  62. transform: translateX(-50%);
  63. }
  64. .writeInput{
  65. margin-top: 60rpx;
  66. width: 90%;
  67. height: 60rpx;
  68. border: 1rpx solid #ccc;
  69. }
  70. .writeInput input{
  71. width: 100%;
  72. height: 100%;
  73. box-sizing: border-box;
  74. }
  75. .hint{
  76. padding-top: 10rpx;
  77. font-size: 24rpx;
  78. color: #999;
  79. }
  80. .btns{
  81. display: flex;
  82. align-items: center;
  83. justify-content: space-between;
  84. width: 60%;
  85. margin-top: 50rpx;
  86. }