index.js 457 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. $(function(){
  2. //添富汇优势滚动效果
  3. $("#go_left").click(function(){
  4. if($("#advantage_con_ul").css("left") == "0px"){
  5. $("#advantage_con_ul").css({"left":"-1200px"});
  6. }else{
  7. return false;
  8. }
  9. })
  10. $("#go_right").click(function(){
  11. if($("#advantage_con_ul").css("left") == "-1200px"){
  12. $("#advantage_con_ul").css({"left":"0px"});
  13. }else{
  14. return false;
  15. }
  16. })
  17. })