diff --git a/view/molistar/modules/roomShare/css/index.css b/view/molistar/modules/roomShare/css/index.css new file mode 100644 index 00000000..fbe1160e --- /dev/null +++ b/view/molistar/modules/roomShare/css/index.css @@ -0,0 +1,134 @@ +html, +body { + width: 100%; + background: #030608; +} + +.back { + width: 100%; + height: 0.58667rem; + line-height: 0.58667rem; + position: fixed; + left: 0; + top: 0.93333rem; + text-align: center; + color: #FFFFFF; + font-size: 0.50667rem; + font-weight: bold; + z-index: 10; +} + +.back img { + width: 0.58667rem; + height: 0.58667rem; + position: absolute; + left: 0.24rem; + top: 0rem; +} + +.box { + width: 10rem; + height: 19.94667rem; + background: url(../images/body.png) no-repeat; + background-size: 100% 100%; + margin: 0 auto 0; + position: relative; +} + +.box .ts { + width: 5.37333rem; + height: 5.12rem; + position: absolute; + left: 50%; + top: 6.14667rem; + transform: translateX(-50%); + z-index: 2; +} + +.box .tx { + width: 3.06667rem; + height: 3.06667rem; + border-radius: 50%; + position: absolute; + left: 50%; + top: 7.1rem; + transform: translateX(-50%); +} + +.box .nick { + width: 5.37333rem; + position: absolute; + left: 50%; + top: 11.78667rem; + transform: translateX(-50%); + color: #fff; + text-align: center; + font-size: 0.48rem; + font-weight: bold; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} + +.box .roomId { + width: 8.14667rem; + height: 1.2rem; + line-height: 1.2rem; + color: #fff; + font-size: 0.48rem; + font-weight: bold; + background: url(../images/but1.png) no-repeat; + background-size: 100% 100%; + position: absolute; + left: 50%; + top: 12.72rem; + transform: translateX(-50%); +} + +.box .roomId .left { + color: #fff; + font-size: 0.4rem; + font-weight: 500; + height: 100%; + position: absolute; + top: 0; + left: 0.58667rem; +} + +.box .roomId .id { + width: 3rem; + position: absolute; + left: 50%; + transform: translateX(-50%); + top: 0; + height: 100%; + text-align: center; +} + +.box .roomId .copys { + width: 2rem; + height: 100%; + color: #fff; + font-size: 0.4rem; + font-weight: 500; + position: absolute; + top: 0; + right: 0rem; + text-align: center; +} + +.box .but { + width: 8.01333rem; + height: 1.06667rem; + line-height: 1.06667rem; + color: #fff; + font-size: 0.42667rem; + font-weight: 500; + background: url(../images/but2.png) no-repeat; + background-size: 100% 100%; + position: absolute; + left: 50%; + top: 15.05333rem; + transform: translateX(-50%); + text-align: center; +} diff --git a/view/molistar/modules/roomShare/css/index.scss b/view/molistar/modules/roomShare/css/index.scss new file mode 100644 index 00000000..31254c4e --- /dev/null +++ b/view/molistar/modules/roomShare/css/index.scss @@ -0,0 +1,139 @@ +@function px2rem($px) { + @return $px / 75+rem; +} + +html, +body { + width: 100%; + background: #030608; +} + + +.back { + width: 100%; + height: px2rem(44); + line-height: px2rem(44); + position: fixed; + left: 0; + top: px2rem(70); + text-align: center; + color: #FFFFFF; + font-size: px2rem(38); + font-weight: bold; + z-index: 10; + + img { + width: px2rem(44); + height: px2rem(44); + position: absolute; + left: px2rem(18); + top: px2rem(0); + } +} + +.box { + width: px2rem(750); + height: px2rem(1496); + background: url(../images/body.png) no-repeat; + background-size: 100% 100%; + margin: 0 auto 0; + position: relative; + + .ts { + width: px2rem(403); + height: px2rem(384); + position: absolute; + left: 50%; + top: px2rem(461); + transform: translateX(-50%); + z-index: 2; + } + + .tx { + width: px2rem(230); + height: px2rem(230); + border-radius: 50%; + position: absolute; + left: 50%; + top: 7.1rem; + transform: translateX(-50%); + } + + .nick { + width: px2rem(403); + position: absolute; + left: 50%; + top: px2rem(884); + transform: translateX(-50%); + color: #fff; + text-align: center; + font-size: px2rem(36); + font-weight: bold; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } + + .roomId { + width: px2rem(611); + height: px2rem(90); + line-height: px2rem(90); + color: #fff; + font-size: px2rem(36); + font-weight: bold; + background: url(../images/but1.png) no-repeat; + background-size: 100% 100%; + position: absolute; + left: 50%; + top: px2rem(954); + transform: translateX(-50%); + + .left { + color: #fff; + font-size: px2rem(30); + font-weight: 500; + height: 100%; + position: absolute; + top: 0; + left: px2rem(44); + } + + .id { + width: 3rem; + position: absolute; + left: 50%; + transform: translateX(-50%); + top: 0; + height: 100%; + text-align: center; + } + + .copys { + width: 2rem; + height: 100%; + color: #fff; + font-size: px2rem(30); + font-weight: 500; + position: absolute; + top: 0; + right: px2rem(0); + text-align: center; + } + } + + .but { + width: px2rem(601); + height: px2rem(80); + line-height: px2rem(80); + color: #fff; + font-size: px2rem(32); + font-weight: 500; + background: url(../images/but2.png) no-repeat; + background-size: 100% 100%; + position: absolute; + left: 50%; + top: px2rem(1129); + transform: translateX(-50%); + text-align: center; + } +} \ No newline at end of file diff --git a/view/molistar/modules/roomShare/images/body-ar.png b/view/molistar/modules/roomShare/images/body-ar.png new file mode 100644 index 00000000..bff193d2 Binary files /dev/null and b/view/molistar/modules/roomShare/images/body-ar.png differ diff --git a/view/molistar/modules/roomShare/images/body-en.png b/view/molistar/modules/roomShare/images/body-en.png new file mode 100644 index 00000000..a7e7099f Binary files /dev/null and b/view/molistar/modules/roomShare/images/body-en.png differ diff --git a/view/molistar/modules/roomShare/images/body.png b/view/molistar/modules/roomShare/images/body.png new file mode 100644 index 00000000..3c039ce5 Binary files /dev/null and b/view/molistar/modules/roomShare/images/body.png differ diff --git a/view/molistar/modules/roomShare/images/but1.png b/view/molistar/modules/roomShare/images/but1.png new file mode 100644 index 00000000..300d74f9 Binary files /dev/null and b/view/molistar/modules/roomShare/images/but1.png differ diff --git a/view/molistar/modules/roomShare/images/but2.png b/view/molistar/modules/roomShare/images/but2.png new file mode 100644 index 00000000..6e47f9cd Binary files /dev/null and b/view/molistar/modules/roomShare/images/but2.png differ diff --git a/view/molistar/modules/roomShare/images/logo.png b/view/molistar/modules/roomShare/images/logo.png new file mode 100644 index 00000000..cbdc951a Binary files /dev/null and b/view/molistar/modules/roomShare/images/logo.png differ diff --git a/view/molistar/modules/roomShare/images/travel/back.png b/view/molistar/modules/roomShare/images/travel/back.png new file mode 100644 index 00000000..2b3812da Binary files /dev/null and b/view/molistar/modules/roomShare/images/travel/back.png differ diff --git a/view/molistar/modules/roomShare/images/ts.png b/view/molistar/modules/roomShare/images/ts.png new file mode 100644 index 00000000..540690d6 Binary files /dev/null and b/view/molistar/modules/roomShare/images/ts.png differ diff --git a/view/molistar/modules/roomShare/index.html b/view/molistar/modules/roomShare/index.html new file mode 100644 index 00000000..c4659748 --- /dev/null +++ b/view/molistar/modules/roomShare/index.html @@ -0,0 +1,44 @@ + + + +
+ + +