BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

topCenter.js 982B

12345678910111213141516171819202122232425262728293031323334353637
  1. $.noty.layouts.topCenter = {
  2. name : 'topCenter',
  3. options : { // overrides options
  4. },
  5. container: {
  6. object : '<ul id="noty_topCenter_layout_container" />',
  7. selector: 'ul#noty_topCenter_layout_container',
  8. style : function() {
  9. $(this).css({
  10. top : 20,
  11. left : 0,
  12. position : 'fixed',
  13. width : '310px',
  14. height : 'auto',
  15. margin : 0,
  16. padding : 0,
  17. listStyleType: 'none',
  18. zIndex : 10000000
  19. });
  20. $(this).css({
  21. left: ($(window).width() - $(this).outerWidth(false)) / 2 + 'px'
  22. });
  23. }
  24. },
  25. parent : {
  26. object : '<li />',
  27. selector: 'li',
  28. css : {}
  29. },
  30. css : {
  31. display: 'none',
  32. width : '310px'
  33. },
  34. addClass : ''
  35. };