gpt4 book ai didi

javascript - Angular JS 飞行购物车动画指令

转载 作者:数据小太阳 更新时间:2023-10-29 06:01:33 24 4
gpt4 key购买 nike

目前,我正在尝试创建一个 Angular 指令,为“飞行购物车”设置动画。

我发现了很多使用 jQuery 的解决方案,但没有一个是在纯 Angular 指令中完成的。我想实现的 jQuery 飞行推车演示在这里...

原始 jQuery Flying Cart Codepen:

http://codepen.io/ElmahdiMahmoud/pen/tEeDn

我对 Angular 指令没有那么丰富的经验,无法确切地知道如何实现这一点。我已经开始了自己的 Codepen,希望弄清楚它,但我无法理解需要发生什么以及如何发生。

我目前的代码笔:

http://codepen.io/anon/pen/emKoov?editors=101

var myApp = angular.module('flyingCartApp', []);

myApp.directive('addToCartButton', function() {

function link(scope, element, attributes) {
element.on('click', function(){
console.log('i was clicked');
console.log('Image source', attributes.src)
console.log('Target element', $(attributes.target))
});
};

return {

restrict: 'E',
link: link,
transclude: true,
replace: true,
scope: {},
template: '<button class="add-to-cart" ng-transclude></button>'
};
});

最佳答案

这里是解决方案 Codepen link

js:

var myApp = angular.module('flyingCartApp', []);

myApp.directive('addToCartButton', function() {


function link(scope, element, attributes) {
element.on('click', function(event){
var cartElem = angular.element(document.getElementsByClassName("shopping-cart"));
console.log(cartElem);
var offsetTopCart = cartElem.prop('offsetTop');
var offsetLeftCart = cartElem.prop('offsetLeft');
var widthCart = cartElem.prop('offsetWidth');
var heightCart = cartElem.prop('offsetHeight');
var imgElem = angular.element(event.target.parentNode.parentNode.childNodes[1]);
var parentElem = angular.element(event.target.parentNode.parentNode);
var offsetLeft = imgElem.prop("offsetLeft");
var offsetTop = imgElem.prop("offsetTop");
var imgSrc = imgElem.prop("currentSrc");
console.log(offsetLeft + ' ' + offsetTop + ' ' + imgSrc);
var imgClone = angular.element('<img src="' + imgSrc + '"/>');
imgClone.css({
'height': '150px',
'position': 'absolute',
'top': offsetTop + 'px',
'left': offsetLeft + 'px',
'opacity': 0.5
});
imgClone.addClass('itemaddedanimate');
parentElem.append(imgClone);
setTimeout(function () {
imgClone.css({
'height': '75px',
'top': (offsetTopCart+heightCart/2)+'px',
'left': (offsetLeftCart+widthCart/2)+'px',
'opacity': 0.5
});
}, 500);
setTimeout(function () {
imgClone.css({
'height': 0,
'opacity': 0.5

});
cartElem.addClass('shakeit');
}, 1000);
setTimeout(function () {
cartElem.removeClass('shakeit');
imgClone.remove();
}, 1500);
});
};


return {
restrict: 'E',
link: link,
transclude: true,
replace: true,
scope: {},
template: '<button class="add-to-cart" ng-transclude></button>'
};
});

CSS:

.shakeit {
-webkit-animation-name: thumb;
-webkit-animation-duration: 200ms;
-webkit-transform-origin:50% 50%;
-webkit-animation-iteration-count: 2;
-webkit-animation-timing-function: linear;
}
.itemaddedanimate {
-webkit-transition: all ease-in-out 0.5s;
}
@-webkit-keyframes thumb {
0% { -webkit-transform: scale(1); }
50% { -webkit-transform: scale(0.8); }
100% { -webkit-transform: scale(1); }
}

关于javascript - Angular JS 飞行购物车动画指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28805854/

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