gpt4 book ai didi

javascript - 在钛javascript中将屏幕移动到图像上

转载 作者:行者123 更新时间:2023-11-29 17:10:41 25 4
gpt4 key购买 nike

我需要在这个网站上创建这样的效果,名称为:

Link from the example site

//I need this in javascript

问题是创建的效果是包含所有设计的图像。如何在 javascript 中移动整个图像并仅显示部分图像以用于 android 和 IOS? Image of all situations of the name

最佳答案

我是用

实现的

index.xml

<Alloy>
<Window class="container">
<Label id="label" top="80" onClick="doClick">Play Sign</Label>
<View height="84">
<ImageView width="255" height="7224" id="sigimage" top="0" image="/testImages/0D8Zt.png"></ImageView>
</View>
</Window>
</Alloy>

index.tss

".container": {
backgroundColor:"white"
}
"Label": {
width: Ti.UI.SIZE,
height: Ti.UI.SIZE,
color: "#000"
}

"#label": {
font: {
fontSize: 18
}
}

index.js

var interval = null;
var i=0;

function doClick(e) {
clearInterval(interval);
i = 0;
replay();
}
replay();
function replay(){
interval = setInterval(function(){
if(i<86){
$.sigimage.top = -i*84;
i++;
Ti.API.info('i = '+i);
}else{
clearInterval(interval);
}
},10);
}

$.index.open();

一个小技巧,希望对你有所帮助。 :)

enter image description here

关于javascript - 在钛javascript中将屏幕移动到图像上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40659295/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com