| 1234567891011121314151617181920 |
- function autoFlashHeight(){
- var infoHeight = $(".contactInfo").height();
- var headerHeight = $(".header").height();
- var cateHeight = $(".contactCate").height();
- var lockHeight = $(".lockCate").height();
- var contactTab = $(".contactTab").height();
- $(".collectContent").width($(window).width()-720);
- $(".autoHeighL1").height($(window).height()-95);
- };
- $(function(){
- $('*[data-toggle=tooltip]').mouseover(function() {
- $(this).tooltip('show');
- });
- /*more user info*/
- $("#opExter").click(function(){
- $(this).hide();
- $(".exter").removeClass("hide");
- });
- })
|