A. 如何用angularjs实现抛物线购物车效果
、使用任何语言创建一个服务端:
public class ShoppingCar
{
public string Title { get; set; }
public decimal UnitPrice { get; set; }
public int Count { get; set; }
}
public ActionResult GetCar()
{
List<ShoppingCar> cars = new List<ShoppingCar>
{
new ShoppingCar { Title="苹果",Count=1,UnitPrice=2.5m},
new ShoppingCar { Title="香蕉",Count=3,UnitPrice=1.5m},
new ShoppingCar { Title="苦瓜",Count=1,UnitPrice=3.5m},
new ShoppingCar { Title="黄瓜",Count=3,UnitPrice=2.2m}
};
return Json(cars,JsonRequestBehavior.AllowGet);
}
B. Jquery商品抛物线飞入购物车代码
这个建议你去找现成js。。给你提供一个地址。。
http://www.zhangxinxu.com/wordpress/?p=3855
里面有现成的方法。。
张鑫专旭同学的博客属里面有这样的方法。。你可以去找的。
zhangxinxu.com/study/201312/js-parabola-shopping.html
就是这个地址啦。跟你这个一样的效果