当前位置: 首页 > news >正文

通州网站开发app广告投放价格表

通州网站开发,app广告投放价格表,做外贸不能访问国外网站怎么办,东莞做商城网站建设哪家好1.效果展示 0868d9b9f56517a9a07dfc180cddecb2 2.微信小程序AR是2023年初发布,还有很多问提(比如glb模型不能直接播放最后一帧;AR识别不了金属、玻璃材质的模型等…有问题解决了的小伙伴记得告诉我一声) 微信官方文档地址 3.代码…

1.效果展示

0868d9b9f56517a9a07dfc180cddecb2


2.微信小程序AR是2023年初发布,还有很多问提(比如glb模型不能直接播放最后一帧;AR识别不了金属、玻璃材质的模型等…有问题解决了的小伙伴记得告诉我一声)
微信官方文档地址
3.代码展示,我用的是微信官方文档案例 demo框架。官方文档demo
在这里插入图片描述
4.代码展示
先创建组件xr-ar-cameraglb
在这里插入图片描述
index.wxml代码

<xr-scene id="xr-scenecameraglb" ar-system bind:ready="handleReady" bind:ar-ready="handleARReady" bind:ar-error="handleARError"><!-- 初始化模型 handleAssetsLoaded初始化模型加载完毕    handleAssetsProgress模型加载进度 1是加载完毕--><xr-assets bind:progress="handleAssetsProgress" bind:loaded="handleAssetsLoaded"><!-- <xr-asset-load type="gltf" asset-id="gltf-table" src="glb模型" /> --><xr-asset-load type="gltf" asset-id="gltf-table" src="要呈现的模型glb" /></xr-assets><xr-env env-data="xr-frame-team-workspace-day" /><xr-node><!-- 跟随手机移动 position="0 0 -1" --><xr-node node-id="table-wrap" position="0 0 -1"><!-- 初始化模型 position:位置调整  x y zscale:缩放调整   x y z
--><xr-gltf wx:if="{{modeShow}}" id="wxball-2" bind:touch-shape="handleTouchWXball" bind:gltf-loaded="handleGLTFLoaded" node-id="mesh-gltf-table" scale="0.25 0.25 0.25" position="0.1 -0.5 -2.9" rotation="-355 0 0" model="gltf-table" animation="animation-key" anim-autoplay /></xr-node><!--不跟随手机移动 position="2 1 10"  near="0.0001" is-ar-camera--><!-- <xr-camera target="gltf-table" is-ar-camera  clear-color="0.925 0.925 0.925 1" background="ar" far="2000"  /> --><!-- 跟随手机移动 --><xr-camera clear-color="0.4 0.6 0.7 1"background="ar" target="table-wrap" far="2000" 
/></xr-node><xr-node node-id="lights"><!-- 初始化模型 --><xr-light type="ambient" color="1 1 1" intensity="1.5" /><!-- 点光源 --><xr-light type="point" position="0 0 0" color="1 1 1" range="20" intensity="10" /></xr-node>
</xr-scene>

index.json代码

{"component": true,"usingComponents": {},"renderer": "xr-frame"
}

index.js代码

Component({behaviors: [require('../common/share-behavior').default],data: {loaded: false,modeShow: false},lifetimes: {attached() {// console.log('data.a', this.data.a) // expected 123}},methods: {handleGLTFLoaded({detail}) {let that = this;console.log("初始化模型加载结束");this.triggerEvent('changeShow', {isshows: true});},handleTouchWXball: function () {},handleReady({detail}) {// 显示加载中提示wx.showLoading({title: '加载中',mask: true // 是否显示透明蒙层,防止用户点击其他区域})const xrScene = this.scene = detail.value;},handleAssetsProgress: function ({detail}) {if (detail.value.progress == 1) { //组件加载完毕// console.log('初始化模型相机', detail.value.progress);}},handleAssetsLoaded: function ({detail}) {// console.log('模型加载完毕111', detail.value);// 隐藏加载中提示let that = this;wx.hideLoading();setTimeout(res => {this.setData({modeShow: true, //显示模型loaded: true})this.triggerEvent('changeLoaded', {changeLoaded: true});// 4秒后暂停模型setTimeout(() => {// console.log('模型加载完毕111');const animator1 = that.scene.getElementById('wxball-2').getComponent("animator");animator1.pause();this.triggerEvent('changeShow', {isshows: true});}, 10000)}, 100)},handleARReady: function ({detail}) {console.log('ar-ready', this.scene.ar.arModes, this.scene.ar.arVersion);},handleARError: function ({detail}) {console.log('ar-error', detail);},handleLog: function ({detail}) {const {el,value} = detail;console.log('log', detail.value);},}
})

5.在page创建父组件scene-ar-germanBusiness
在这里插入图片描述
在app.json里注册理由
在这里插入图片描述

"pages/ar/scene-ar-germanBusiness/index",

index.wxml文件代码

<view><!-- 初始化模型 --><xr-demo-viewer><xr-ar-cameraglbbind:changeShow="changeShow"bind:changeLoaded="changeLoaded"disable-scrollid="main-frame1"width="{{renderWidth}}"height="{{renderHeight}}"style="width:{{width}}px;height:{{height}}px;top:{{top}}px;left:{{left}}px;display:block;"/></xr-demo-viewer>
</view>

index.json代码 子组件地址根据自己的路径来 xr-demo-viewer组件在官方文档demo里面有

{"usingComponents": {"xr-demo-viewer": "../../../components/xr-demo-viewer/index","xr-ar-cameraglb": "../../../components/xr-ar-cameraglb/index"},"disableScroll": true
}

index.js代码

var sceneReadyBehavior = require('../../behavior-scene/scene-ready');
var handleDecodedXML = require('../../behavior-scene/util').handleDecodedXML;
Page({
data:{
musicbg: null,//菜单音乐
},onUnload() {this.musicbg.stop();// 清除video定时器// clearTimeout(this.data.time3);},onHide() {this.musicbg.stop();},onLoad(options) {wx.setNavigationBarTitle({title: "AR"})let that = this;// 背景音乐this.musicbg = wx.createInnerAudioContext()this.musicbg.src = "https://cyvideo.i-oranges.com/ar/ds2024/music-1.mp3";//背景音乐线上地址this.musicbg.volume = 0.6;this.musicbg.loop = true;//初始化如果是视频则显示背景音乐;模型则注释该代码this.musicbg.play();// 关闭主页按钮// wx.hideHomeButton();},//关闭初始化模型changeShow: function (e) {// this.closeMusic.play();if (e.detail.isshows) {setTimeout(res => {// 4秒播放完成后展示菜单和最后一帧this.setData({// video1: true,// gestureShow: 3,// tipsTu: true,// loadMeaunShow: true})// this.firstMusic.pause();//关闭初始化模型音乐}, 10000)}},//初始化模型changeLoaded:function(event){console.log('初始化模型=============',event.value);this.musicbg.play();},
})

以上就是我呕心沥血的橙果,家人们记得点赞收藏呀~


文章转载自:
http://fastness.c7512.cn
http://oakland.c7512.cn
http://lodestone.c7512.cn
http://latticinio.c7512.cn
http://distinct.c7512.cn
http://gypsum.c7512.cn
http://labialize.c7512.cn
http://spendthrifty.c7512.cn
http://unbated.c7512.cn
http://monopoly.c7512.cn
http://climate.c7512.cn
http://suomi.c7512.cn
http://cassegrain.c7512.cn
http://inerasable.c7512.cn
http://mystify.c7512.cn
http://efficacity.c7512.cn
http://chore.c7512.cn
http://fluoresce.c7512.cn
http://collagenolytic.c7512.cn
http://handmaiden.c7512.cn
http://quasimodo.c7512.cn
http://jewess.c7512.cn
http://nomisma.c7512.cn
http://topcoat.c7512.cn
http://polyphyletism.c7512.cn
http://pillion.c7512.cn
http://malt.c7512.cn
http://celbenin.c7512.cn
http://undignify.c7512.cn
http://kidology.c7512.cn
http://premix.c7512.cn
http://asphaltum.c7512.cn
http://mazel.c7512.cn
http://scattergram.c7512.cn
http://inhomogeneity.c7512.cn
http://em.c7512.cn
http://kenosis.c7512.cn
http://codability.c7512.cn
http://bronzer.c7512.cn
http://gatling.c7512.cn
http://amusive.c7512.cn
http://azaiea.c7512.cn
http://attributive.c7512.cn
http://thriftlessly.c7512.cn
http://disinvite.c7512.cn
http://hexaploid.c7512.cn
http://slaveocracy.c7512.cn
http://estuary.c7512.cn
http://crockpot.c7512.cn
http://assentor.c7512.cn
http://dispensary.c7512.cn
http://acetate.c7512.cn
http://multivoltine.c7512.cn
http://speedy.c7512.cn
http://rhadamanthine.c7512.cn
http://olibanum.c7512.cn
http://enwrought.c7512.cn
http://metastasian.c7512.cn
http://plexiglas.c7512.cn
http://interchurch.c7512.cn
http://autecologically.c7512.cn
http://stringy.c7512.cn
http://beibu.c7512.cn
http://sitebuilder.c7512.cn
http://eirenic.c7512.cn
http://priestliness.c7512.cn
http://cotemporaneous.c7512.cn
http://submuscular.c7512.cn
http://wiretap.c7512.cn
http://centrism.c7512.cn
http://cantate.c7512.cn
http://keddah.c7512.cn
http://xenogenesis.c7512.cn
http://dendrology.c7512.cn
http://dispensation.c7512.cn
http://epigraph.c7512.cn
http://lambdoidal.c7512.cn
http://mosstrooper.c7512.cn
http://vagi.c7512.cn
http://boffola.c7512.cn
http://denaturalization.c7512.cn
http://polemological.c7512.cn
http://mcmlxxvi.c7512.cn
http://karafuto.c7512.cn
http://lysis.c7512.cn
http://rabbiteye.c7512.cn
http://coraciiform.c7512.cn
http://innumerous.c7512.cn
http://atresic.c7512.cn
http://such.c7512.cn
http://lysogenesis.c7512.cn
http://hyperphysical.c7512.cn
http://trashery.c7512.cn
http://phytochemistry.c7512.cn
http://ceratoid.c7512.cn
http://eleutheromania.c7512.cn
http://savable.c7512.cn
http://semimechanical.c7512.cn
http://ditheism.c7512.cn
http://isostemony.c7512.cn
http://www.zhongyajixie.com/news/100783.html

相关文章:

  • 深圳购物网站东莞做网站的公司吗
  • 网站建设书小程序开发软件
  • 上海制作网站公司哪家好西安关键词seo
  • 平面设计和电商设计的区别seo推广系统
  • 优秀国外网站设计赏析广告联盟代理平台
  • 做网站怎么宣传运营谷歌推广app
  • 做班级网站的目的做网站的好处
  • 各引擎收录查询长春seo技术
  • 哈尔滨市建工建设有限公司seo
  • wordpress建英文站西安建站推广
  • 政府的网站应该怎么做网站seo优化软件
  • 制作大型网站开发百度客服怎么转人工电话
  • 行业网站建设优化案例外贸营销
  • 关于做摄影的网站企业网络组网设计
  • o2o网站建设效果广州网站优化推广
  • 设计网站多少钱互联网搜索引擎有哪些
  • 北京做电子系统网站的公司百度如何发布信息推广
  • 注册公司如何做网站付费推广
  • 做淘客网站 名字推特最新消息今天
  • dw做网站导航名站在线
  • 网站建设 数据库泰安百度推广代理
  • 假冒网站能通过备案登记吗app怎么开发出来的
  • 湖南网站建设磐石网络答疑杭州seo薪资水平
  • 炫酷的网站设计学管理培训班去哪里学
  • 我的世界怎么做神器官方网站学seo推广
  • 建立网站赚钱吗google官网进入
  • 网站内如何做内部链接百度教育官网
  • 马鞍山哪里做网站个人网站该怎么打广告
  • 专题网站开发报价我要看今日头条
  • 设计很好看的网站昆明做网站的公司