global.js 585 B

1234567891011121314151617181920
  1. function autoFlashHeight(){
  2. var infoHeight = $(".contactInfo").height();
  3. var headerHeight = $(".header").height();
  4. var cateHeight = $(".contactCate").height();
  5. var lockHeight = $(".lockCate").height();
  6. var contactTab = $(".contactTab").height();
  7. $(".collectContent").width($(window).width()-720);
  8. $(".autoHeighL1").height($(window).height()-95);
  9. };
  10. $(function(){
  11. $('*[data-toggle=tooltip]').mouseover(function() {
  12. $(this).tooltip('show');
  13. });
  14. /*more user info*/
  15. $("#opExter").click(function(){
  16. $(this).hide();
  17. $(".exter").removeClass("hide");
  18. });
  19. })