debug、trace、warning、error动作说明【常用】—krpano教程

debug(...) trace(...) warning(...) error(...) 输出变量的值,用于程序调试. • debug() will trace 'DEBUG:' message...

showlog动作说明【常用】—krpano教程

showlog(state*) 输出trace动作输出的语句,默认在底部弹出半透明滚动文本框显示,调试程序的重要手段. 参数: •state (输...

js动作说明【常用】—krpano教程

js( JavascriptFunction(parameters) ) xml中执行一个javascript的函数. 需要执行的js可以先在html中定义或引入,再在xml...

removelayer、removehotspot动作说明【常用】—krpano教程

removelayer(name, removechildren*) removeplugin(name, removechildren*) removehotspot(name) removelensflare(name) ...

addlayer、addplugin、addhotspot、addlensflare动作说明【常用】—krpano教程

addlayer(name) addplugin(name),注意:addplugin和addlayer功能及语法是一样,以下不再重复举例 addhotspot(name) addlensfla...

showtext动作说明【常用】—krpano教程

showtext(text, textstyle*) showtext用于鼠标滑过元素时显示文字,可以设置文字样式,旧版本可以直接使用动作,新版本需要先...

lookat动作说明【常用】—krpano教程

lookat(h, v, fov*, distortion*, architectural*, pannini*) 视角转到指定坐标位置,没有移动过程,瞬间转换,这与lookto等...

lookto、looktohotspot、moveto、zoomto动作说明【常用】—krpano教程

lookto(toH,toV,fov*,motiontype*,shortestway*,nonblocking*,donecall*) 视角往指定坐标看,有移动过程 looktohotspot(hotspot...

openurl动作说明【常用】—krpano教程

openurl(url, target*) 打开一个连接或页面地址. 参数: •url ◦连接或页面地址. •target (可选,这个和html的打开网页...

loadpano、loadscene、loadpanoscene、loadxml动作说明【常用】—krpano教程

loadpano(xmlpath, vars*, flags*, blend*) loadscene(scenename, vars*, flags*, blend*) loadpanoscene(xmlpath, scenename, ...

tween动作说明【常用】—krpano教程

tween(variable, value, time*, tweentype*, donecall*, updatecall*) tween可以用于由指定时间过渡的动态效果过渡,可以用于...

txtadd动作说明【常用】—krpano教程

txtadd(destination, txt1, txt2*, txt3*, ...) 两个或多个变量值、字符串合并. 参数: •destination ◦合并后的目标变量. ...

加减乘除-常用运算动作说明【常用】—krpano教程

add(variable, valueA, valueB*) 加运算:variable=valueA+valueB sub(variable, valueA, valueB*) 减运算:variable=valueA...

switch动作说明【常用】—krpano教程

switch(variable) switch(variable, value1, value2, ...) switch开关选择动作,当只插入一个变量时,一般为布尔型,在真假...

toggle动作说明【常用】—krpano教程

toggle(variable) 切换参数变量的真假. 参数: •variable ◦真/假变量. 样例: toggle(fullscreen); 切换系统全屏状...

stopdelayedcall动作说明【常用】—krpano教程

stopdelayedcall(id) 通过id停止对应delayedcall的动作,与delayedcall配合使用. 参数: •id ◦对应ID的delayedcall将马上...

delayedcall动作说明【常用】—krpano教程

delayedcall(delay, actions) delayedcall(id, delay, actions) 延迟执行某个动作,并设置延迟的时间. 领主提醒:delayed...

copy动作说明【常用】—krpano教程

copy(destination, source) copy动作用于将一个变量的值,复制到另外一个变量. 当源变量与复制后的目标变量类型不同时,复...

calc动作说明【常用】—krpano教程

calc(variable, expression) action( calc(expression), ... ) array[ calc(expression) ] <xmlelement attribute="calc:ex...

Top