index.js 576 B

12345678910111213141516171819202122
  1. $(function(){
  2. $.fn.extend({
  3. // 合作机构
  4. cooperativePosition:function(){
  5. var spanWidth = $(this).find('span').height();
  6. this.hover(function(){
  7. $(this).find('span').animate({
  8. bottom:'0'
  9. },100);
  10. },function(){
  11. $(this).find('span').animate({
  12. bottom:'-40px'
  13. },100);
  14. })
  15. }
  16. });
  17. function pageFun(){
  18. $('.cooperative-content-box div ul li').cooperativePosition();
  19. }
  20. pageFun();
  21. })