Advertisement
Guest User

Lightbox-jsProfite

a guest
Aug 28th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. if($(".chatson").length == 0){
  2. $("body").append('<div class="chatson" style="background: url(/arquivos/chatStatusImage.png) right top; cursor: pointer; border-radius: 0 5px 6px 0; height: 75px; position: absolute; top: 55%; width: 30px;"></div>');
  3. $(".chatson").click(function(){
  4. $("body").append('<div class="chatson-overlayson" style="background-color: rgba(255, 255, 255, 0.6);display: block;height: 100% !important;position: fixed;top: 0;width: 100%;z-index: 2147000000;"></div>');
  5. $("body").append('<div class="chatson-iframeson" style="height: 450px;left: 50%;margin-left: -250px;margin-top: -225px;position: fixed;top: 50%;width: 450px;z-index: 2147483647;"><iframe style="height: 470px; width: 500px;" src="http://www4.directtalk.com.br/chat/?idd=F48800060DF1A0019342&origem=Schumann" frameborder="0"></iframe><div class="closeson-iframeson" style="background: url(/arquivos/schumann-chatson-closeson.jpg); cursor: pointer; height: 24px;position: absolute;right: -45px;top: 5px;width: 24px;"></div></div>');
  6. $(".chatson-iframeson .closeson-iframeson, .chatson-overlayson").click(function(){
  7. $(".chatson-iframeson, .chatson-overlayson").remove();
  8. });
  9. });
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement