index.js 1018 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import '../css/bootstrap.less';
  2. import 'bootstrap/dist/js/bootstrap.js';
  3. import '../css/public.css';
  4. import '../css/index_home.css';
  5. import './public.js';
  6. import './main_banner.js';
  7. $(function(){
  8. var k=0;
  9. var liwit=$('.need_imgs ul li').width();
  10. var lilengths=$('.need_imgs ul li').length;
  11. $('.need_next').click(function(){
  12. k++;
  13. if(k>lilengths-3){
  14. k=lilengths-3
  15. }
  16. $('.need_imgs ul').animate({'marginLeft':-(liwit+20)*k},500)
  17. });
  18. $('.need_prev').click(function(){
  19. k--;
  20. if(k<0){
  21. k=0
  22. }
  23. $('.need_imgs ul').animate({'marginLeft':-(liwit+20)*k},500)
  24. });
  25. //精品成果鼠标经过效果
  26. $('.content .cont').hover(function(){
  27. $('.con_hover').show();
  28. var lent=$(this).index()-1;
  29. var wid=$(this).width()+10;
  30. if(lent%2===0){
  31. $('.con_hover').css({top:"-36px"})
  32. }else{
  33. $('.con_hover').css({top:"15px"})
  34. }
  35. $('.con_hover').animate({left:lent*wid},50)
  36. })
  37. $('.content').mouseleave(function(){
  38. $('.con_hover').hide();
  39. $('.content .cont').stop(true)
  40. })
  41. });