#灵感
slot简单demo参考链接: https://github.com/bss1284/unity-slot-sample.git
市场需求链接:
用户增长中台需求链接:
https://inspire.sg.larksuite.com/docx/HA9JdUG6IoD8XJxlAB6lDgttgAS
替换后的slot商店链接:https://apps.apple.com/us/app/hello-jackpot/id6535655150
https://itunes.apple.com/app/hello-jackpot-casino-slots/id6535655150
AppLovin上传和测试链接:https://p.applov.in/playablePreview?create=1&qr=1
![[Pasted image 20250616165157.png]]
![[Pasted image 20250616165217.png]]
![[Pasted image 20250616165243.png]]
![[Pasted image 20250616165255.png]]
![[img_v3_02n7_7d05e50a-a8e0-436a-b9f4-d3dbab43d5hu.jpg]]
在playwork生成的,单html文件中,预加载的时候,会有这个进度条
![[Pasted image 20250620095345.png]]
是因为有这仨css样式
.preloader__outer__bar {
display: flex;
justify-content: left;
align-items: center;
width: 100%;
height: 1.2vmax;
margin: 0.4vmax;
border-radius: 1000px;
}
.preloader__outer__bar:before {
content: '';
position: absolute;
border: 0.3vmax solid #fff;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-radius: 100vh;
}
.preloader__bar {
width: 0;
height: calc(100% - 0.4vmax);
margin: 0.2vmax;
border-radius: 10000px;
box-sizing: border-box;
background: white;
animation: loading 8s forwards;
}
解决方法:
![[Pasted image 20250620095940.png]]
作用说明:
![[Pasted image 20250620100408.png]]
![[Pasted image 20250620100450.png]]
![[Pasted image 20250620100509.png]]
重新打开网页,可以看到,是生效的了:
![[Pasted image 20250620100604.png]]