| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- (function(a) {
- a.jResize = function(c) {
- a.jResize.defaults = {
- viewPortSizes : [ "320px", "480px", "540px", "600px", "768px",
- "960px", "1024px", "1280px" ],
- backgroundColor : "444",
- fontColor : "FFF",
- postid : 0
- };
- c = a.extend({}, a.jResize.defaults, c);
- var g = '<div class="viewports" style="position:fixed;top:0;left:0;right:0;overflow:auto;z-index:9999;background:#'
- + c.backgroundColor
- + ";color:#"
- + c.fontColor
- + ';box-shadow:0 1px 0 #FFFFFF inset, 0 -1px 0 #FFFFFF inset, 0 3px 0 #EEEEEE inset, 0 -3px 0 #EEEEEE inset, 0 0 5px rgba(0, 0, 0, 0.1);"><ul class="viewlist"></ul><div style="clear:both;"></div></div>';
- var e = c.viewPortSizes;
- var d = "display:inline-block;cursor:pointer;font-size:12px;line-height:12px;text-align:center;width:5%;border-right:1px solid #EEEEEE;padding:10px 5px;";
- var f = '<a href="http://www.gbtags.com" style="color:#'
- + c.fontColor
- + ';text-decoration:underline;"><div class="gbtags-preview-logo" style="float:right;padding:10px 25px;font-size:14px;line-height:12px;"> </div></a>';
- a("body").wrapInner('<div id="resizer" />');
- a("#resizer").before(g);
- a.each(e, function(i, h) {
- a(".viewlist")
- .append(
- a('<li class="' + h + '" style="' + d + '">' + h
- + "</li>"));
- a("." + h + "").click(function() {
- a("#resizer").animate({
- width : "" + h + ""
- }, 300)
- })
- });
- a(".viewlist")
- .prepend(
- '<li class="reset" style="'
- + d + '">ȱʡ</li>', f);
- var b = a(".viewlist").outerHeight();
- a(".viewports").hide().slideDown("300");
- a("#resizer").css({
- margin : "0 auto"
- }).animate({
- marginTop : b
- });
- a(".reset").click(function() {
- a("#resizer").css({
- width : "auto"
- })
- })
- }
- })(jQuery);
|