portal html css js resource

shareCom.js 559B

12345678910111213141516171819202122
  1. $(document).ready(function(){
  2. //处理点击事件,需要打开原生浏览器
  3. $("body").on("click","a.advertsub",function(){
  4. var adId = this.getAttribute('data-id');
  5. console.log(adId)
  6. wlog("ad", adId ,"3");
  7. return true;
  8. })
  9. })
  10. /*控制提示框样式*/
  11. function bombox(textt) {
  12. $(".bomb-box").fadeIn("slow");
  13. $(".bomb-box").text(textt);
  14. var bombwidth = $(".bomb-box").width();
  15. $(".bomb-box").css({
  16. "marginLeft": -(bombwidth + 25) / 2 + "px"
  17. });
  18. setTimeout(function() {
  19. $(".bomb-box").fadeOut("slow");
  20. }, 4000);
  21. }