simulation.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view class="s_container">
  3. <image src="../../assets/home/homeBG.png" class="s_logo" mode=""></image>
  4. <view class="s_content_container">
  5. <view class="s_title" v-text="'虚拟仿真1号摄影棚'">
  6. </view>
  7. <view class="s_content">
  8. <view class="">
  9. 影视现场实时特效是虚拟制片的一种影视创作流程与创作技术,处于虚 拟制片前、中、后期中的中期现场创作环节,与虚拟制片的前期艺术设 计、虚拟制作联系尤为密切。影视现场实时特效的核心
  10. 是通过实时渲染、数据跟踪、CG制作等核心技术,在影视拍摄现场实现虚拟创作与现 实创作的实时同步与实时协作,并在现场呈现影像最终效果。除现场摄 制以外,影视现场实时特效还包括
  11. 前期虚拟艺术(数字制景、数字道具、数字角色)的再创作和后期处理(合成、调色)的现场创作。
  12. </view>
  13. </view>
  14. </view>
  15. <view class="s_footer" style="text-align: center;padding: 80rpx;">
  16. <button size="mini" class="m_btn_download" style="">客户端下载</button>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. name: "simulation",
  23. data() {
  24. return {
  25. }
  26. },
  27. created() {
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. .s_container {
  35. width: 100%;
  36. height: 100%;
  37. }
  38. .s_logo {
  39. width: 100%;
  40. height: 1000rpx;
  41. }
  42. .s_content_container {
  43. padding: 0 206rpx;
  44. .s_title {
  45. font-weight: bold;
  46. text-align: center;
  47. line-height: 200rpx;
  48. font-size: 45rpx;
  49. }
  50. .s_content {
  51. font-weight: 500;
  52. font-size: 40rpx;
  53. line-height: 70rpx;
  54. }
  55. }
  56. .m_btn_download {
  57. height: 80rpx;
  58. line-height: 80rpx;
  59. padding: 0 70rpx;
  60. background: #EA252C;
  61. color: #fff;
  62. font-family: MicrosoftYaHei;
  63. }
  64. </style>