本文实例讲述了jQuery+css3实现Ajax点击后动态删除功能的方法。分享给大家供大家参考。具体如下:
这里使用jquery实现ajax动态删除一个方框,并带有动画缓冲效果,在google plus网站发现的特效,在此献丑模仿了一番,已基本与Google Plusp功能相同,你可在方框中加入一些内容,jquery插件选的版本是1.6.2,更高版本也是可以的。
运行效果截图如下:
具体代码如下:
jQuery+css3实现Ajax动态点击删除功能 .circle-label-rotate {-webkit-animation-name: rotateThis;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;} @-webkit-keyframes rotateThis {from {-webkit-transform:scale(1) rotate(0deg);} to{-webkit-transform:scale(1) rotate(360deg);}} .circle{border-radius: 50px;-moz-border-radius: 50px; -webkit-border-radius: 50px;height:100px;width:100px;background:#dedede;} .sqare{height:100px;width:500px;border:dashed 1px #000;margin-top:10px;} .innertext{padding:40px;} 请点击虚线方框 这个方框是可以被删除的


