У меня есть этот запрос, когда документ загружается:
jQuery( window ).load(
function(){
$('#container img').animate({"opacity": 1});
$('#container img').hover(function() {
$(this).stop().animate({ "opacity": .5 });
}, function() {
$(this).stop().animate({ "opacity": 1 });
});
setTimeout(
function(){
window.scrollTo( 0, 0 );
},
50
);
}
);
Это оператор if, к которому я добавлю, когда я что-то получу правильно:
function touchMove(event) {
event.preventDefault();
if ((event.touches.length === 1) && (swipeDirection === 'down') && (swipeLength >= 90) && (swipeLength <= 120)) {
curX = event.touches[0].pageX;
curY = event.touches[0].pageY;
('1.png').hover(function() {
$(this).stop().animate({
"opacity": '1'
});
И этот CSS
<style>
#container {
background: transparent;
left: 5px;
top: 20px;
position: relative;
border: 1px dotted #ddd;
}
</style>
А затем это в теле:
<div id="swipe-frame" class="swipe-element" ontouchstart="touchStart(event,'swipe-frame');" ontouchend="touchEnd(event);" ontouchmove="touchMove(event);" ontouchcancel="touchCancel(event);" style="width:100%; height:100%; background: transparent; -webkit-user-select: none;padding-top:128px;">
</div>
<div id="container">
<img src="1.png" alt="image" />
<img src="2.png" alt="image" />
<img src="3.png" alt="image" />
<img src="4.png" alt="image" />
<img src="5.png" alt="image" />
</div>
Потому что я пытаюсь загрузить 5 изображений друг на друга, чтобы создать впечатление, что они одно изображение.Они затенены при загрузке документа.Затем, когда пользователь проводит пальцем по изображению, изображения анимируются до нормального состояния.Но ничего не появляется.Кто-нибудь знает почему?http://tinyurl.com/62hakh2 Спасибо за внимание.