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
就是這個地址啦。跟你這個一樣的效果