Tìm kiếm phim "gõ tiếng việt có dấu"

Script Code HTML get link phim từ google drive phong cách mới cho blog và website


Code get link phim từ google drive phong cách mới cho blog và website, load phim vô tư cho dù google có fix hay update. Với code này tạo thêm cho du khách thêm hành động vào website của bạn, điều này rất có ít cho tăng thứ hạng với google vì con bọ robot.txt dựa vào điều này mà giúp tăng thứ hạng trên site của bạn và giúp kiếm tiền nhiều hơn với Net Popads (chỉ cần 10 bài viết là nó chấp thuận, rate rất cao so với Google Adsense).

Niếu là blog mới thì bạn nên tham khảo thêm:
1. Thủ thuật (mẹo) chuẩn SEO thật tuyệt vời kinh điển cho blog mới tạo
2. Hướng dẫn cách xây dựng backlink chuẩn SEO tương tự như Youtube 
3. Hệ thống backlink tự động người thật, việc thật 100% 

Đầu tiên tải code này rồi copy code dán vào bố cục HTML JavaScript của blog trên cùng đầu tiên hoặc trên thẻ <header> của website. Với code này có tác dụng tránh sự tò mò của du khách nên cần thêm vài code hỗ trợ cho blog và website của chúng ta an toàn hơn, chống du khách xem nguồn code blog của chúng ta và chỉ cài đặt 1 lần duy nhất.

Lưu ý : phải có code trên thì mới mỡ được hộp thoại video mà ta cần embed.

<body expr:class='&quot;loading&quot; + data:blog.mobileClass' oncontextmenu='return false'>

Nhấn Ctr+F : <body và thêm như trong hình : oncontextmenu="return false"
Nó sẽ giúp cho chúng ta tránh khỏi du khách click chuột trái để xem code blog hoặc website.

Tiếp theo ta cho đoạn code này trong bài viết :

<script>
(function() {
  var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };

  (function($) {
    var FSP, defaults, pluginName;
    pluginName = "fullScreenPopup";
    defaults = {
      bgColor: "#000",
      inlineStyles: true,
      lockDocumentScroll: true,
      mainWrapperClass: "fsp-wrapper",
      contentWrapperClass: "fsp-content",
      closePopupClass: "fsp-close",
      animationSpeed: 200
    };
    FSP = (function() {
      function FSP(element, options) {
        this.element = element;
        this.closePopup = __bind(this.closePopup, this);
        this.init = __bind(this.init, this);
        this.options = $.extend({}, defaults, options);
        this._defaults = defaults;
        this._name = pluginName;
        this.element = $(this.element);
        this.body = $("body");
        this.element.on("click", this.init);
      }

      FSP.prototype.init = function(event) {
        event.preventDefault();
        this.getTarget();
        this.getTargetSizes();
        this.createWrappers();
        this.wrapTarget();
        if (this.options.lockDocumentScroll) {
          this.lockDocumentScroll();
        }
        this.render();
        return this.bindEvents();
      };

      FSP.prototype.getTarget = function() {
        this.target = $(this.element.attr("href") || this.element.data("popup"));
        return this.targetParent = this.target.parent();
      };

      FSP.prototype.getTargetSizes = function() {
        return this.targetSizes = {
          width: this.target.width(),
          height: this.target.height()
        };
      };

      FSP.prototype.wrapTarget = function() {
        this.target = this.detachFromDom(this.target);
        return this.target.appendTo(this.contentWrapper);
      };

      FSP.prototype.render = function() {
        this.target.show();
        this.attachToDom(this.mainWrapper, "body");
        this.popupCentered();
        return this.mainWrapper.fadeIn(this.options.animationSpeed);
      };

      FSP.prototype.detachFromDom = function(element) {
        return element.detach();
      };

      FSP.prototype.attachToDom = function(element, target) {
        return element.appendTo(target);
      };

      FSP.prototype.bindEvents = function() {
        return this.close.on("click", this.closePopup);
      };

      FSP.prototype.createWrappers = function() {
        this.mainWrapper = $("<div/>", {
          "class": "" + this.options.mainWrapperClass,
          "style": this.options.inlineStyles ? "background: " + this.options.bgColor + "; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; overflow-y: auto; overflow-x: hidden; display: none" : void 0
        });
        this.contentWrapper = $("<div/>", {
          "class": "" + this.options.contentWrapperClass,
          "style": "width: " + this.targetSizes.width + "px; height: " + this.targetSizes.height + "px;  position: absolute; top: 50%; left: 50%; margin-left: -" + (this.targetSizes.width / 2) + "px; margin-top: -" + (this.targetSizes.height / 2) + "px"
        }).appendTo(this.mainWrapper);
        return this.close = $("<a/>", {
          href: "#",
          html: "&times;",
          "class": "" + this.options.closePopupClass,
          "style": this.options.inlineStyles ? "position: absolute; right: 2em; top: 2em;" : void 0
        }).appendTo(this.mainWrapper);
      };

      FSP.prototype.popupCentered = function() {};

      FSP.prototype.closePopup = function(event) {
        var self;
        event.preventDefault();
        self = this;
        return this.mainWrapper.fadeOut(this.options.animationSpeed, function() {
          if (self.options.lockDocumentScroll) {
            self.unlockDocumentScroll();
          }
          self.target = self.detachFromDom(self.target);
          self.target.hide();
          self.attachToDom(self.target, self.targetParent);
          return self.deleteWrappers();
        });
      };

      FSP.prototype.deleteWrappers = function() {
        return this.mainWrapper.remove();
      };

      FSP.prototype.lockDocumentScroll = function() {
        return this.body.css({
          "overflow": "hidden"
        });
      };

      FSP.prototype.unlockDocumentScroll = function() {
        return this.body.css({
          "overflow": "visible"
        });
      };

      return FSP;

    })();
    return $.fn[pluginName] = function(options) {
      return this.each(function() {
        if (!$.data(this, "plugin_" + pluginName)) {
          return $.data(this, "plugin_" + pluginName, new FSP(this, options));
        }
      });
    };
  })(jQuery);

}).call(this);</script>

<script>
   $(function() {
    $(".open-popup").fullScreenPopup({
     bgColor: '#000'
    });
   });
  </script>
<br />
<center>
<a class="open-popup" href="#popup"><img border="0" height="auto" src="Thêm link hình ảnh phim từ blog của bạn ở đây" width="100%" /></a><br />
<br />
<button class="open-popup" data-popup="#popup"><span style="color: red; font-size: x-large;"><i><b>Xem Thêm</b></i></span></button></center>
<div id="popup" style="display: none; width: 1280px;">
<div style="overflow: hidden; padding-bottom: 56.25%; position: relative;">
<embed frameborder="0" height="100%" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="low" scrolling="auto" src="https://video.google.com/get_player?docid=0B1xQLLJtrzJoaWUxUHdqY01mRGM&amp;ps=docs&amp;partnerid=30&amp;cc_load_policy=1&amp;version=3&amp;showinfo=0&amp;autoplay=1" style="position: absolute;" type="application/x-shockwave-flash" width="100%"></embed></div></div>
<br />

Lưu ý : 0B1xQLLJtrzJoaWUxUHdqY01mRGM là id của google drive



Chúng ta nên mã hóa code embed phim tại đây. Khi ta mã hóa code xong thì không ai có thể xem được id của google drive, cho dù có người cố tình kiểm tra nguồn code của chúng ta. Nên mã hóa đoạn code sau :
Trước khi mã hóa :
<embed frameborder="0" height="100%" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="low" scrolling="auto" src="https://video.google.com/get_player?docid=0B1xQLLJtrzJoaWUxUHdqY01mRGM&amp;ps=docs&amp;partnerid=30&amp;cc_load_policy=1&amp;version=3&amp;showinfo=0&amp;autoplay=1" style="position: absolute;" type="application/x-shockwave-flash" width="100%"></embed>
Sau khi mã hóa : 
 <script type="text/javascript">document.write('\u003c\u0065\u006d\u0062\u0065\u0064\u0020\u0066\u0072\u0061\u006d\u0065\u0062\u006f\u0072\u0064\u0065\u0072\u003d\u0022\u0030\u0022\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u003d\u0022\u0031\u0030\u0030\u0025\u0022\u0020\u0070\u006c\u0075\u0067\u0069\u006e\u0073\u0070\u0061\u0067\u0065\u003d\u0022\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0077\u0077\u0077\u002e\u006d\u0061\u0063\u0072\u006f\u006d\u0065\u0064\u0069\u0061\u002e\u0063\u006f\u006d\u002f\u0067\u006f\u002f\u0067\u0065\u0074\u0066\u006c\u0061\u0073\u0068\u0070\u006c\u0061\u0079\u0065\u0072\u0022\u0020\u0071\u0075\u0061\u006c\u0069\u0074\u0079\u003d\u0022\u006c\u006f\u0077\u0022\u0020\u0073\u0063\u0072\u006f\u006c\u006c\u0069\u006e\u0067\u003d\u0022\u0061\u0075\u0074\u006f\u0022\u0020\u0073\u0072\u0063\u003d\u0022\u0068\u0074\u0074\u0070\u0073\u003a\u002f\u002f\u0076\u0069\u0064\u0065\u006f\u002e\u0067\u006f\u006f\u0067\u006c\u0065\u002e\u0063\u006f\u006d\u002f\u0067\u0065\u0074\u005f\u0070\u006c\u0061\u0079\u0065\u0072\u003f\u0064\u006f\u0063\u0069\u0064\u003d\u0030\u0042\u0031\u0078\u0051\u004c\u004c\u004a\u0074\u0072\u007a\u004a\u006f\u0061\u0057\u0055\u0078\u0055\u0048\u0064\u0071\u0059\u0030\u0031\u006d\u0052\u0047\u004d\u0026\u0061\u006d\u0070\u003b\u0070\u0073\u003d\u0064\u006f\u0063\u0073\u0026\u0061\u006d\u0070\u003b\u0070\u0061\u0072\u0074\u006e\u0065\u0072\u0069\u0064\u003d\u0033\u0030\u0026\u0061\u006d\u0070\u003b\u0063\u0063\u005f\u006c\u006f\u0061\u0064\u005f\u0070\u006f\u006c\u0069\u0063\u0079\u003d\u0031\u0026\u0061\u006d\u0070\u003b\u0076\u0065\u0072\u0073\u0069\u006f\u006e\u003d\u0033\u0026\u0061\u006d\u0070\u003b\u0073\u0068\u006f\u0077\u0069\u006e\u0066\u006f\u003d\u0030\u0026\u0061\u006d\u0070\u003b\u0061\u0075\u0074\u006f\u0070\u006c\u0061\u0079\u003d\u0031\u0022\u0020\u0073\u0074\u0079\u006c\u0065\u003d\u0022\u0070\u006f\u0073\u0069\u0074\u0069\u006f\u006e\u003a\u0020\u0061\u0062\u0073\u006f\u006c\u0075\u0074\u0065\u003b\u0022\u0020\u0074\u0079\u0070\u0065\u003d\u0022\u0061\u0070\u0070\u006c\u0069\u0063\u0061\u0074\u0069\u006f\u006e\u002f\u0078\u002d\u0073\u0068\u006f\u0063\u006b\u0077\u0061\u0076\u0065\u002d\u0066\u006c\u0061\u0073\u0068\u0022\u0020\u0077\u0069\u0064\u0074\u0068\u003d\u0022\u0031\u0030\u0030\u0025\u0022\u003e\u003c\u002f\u0065\u006d\u0062\u0065\u0064\u003e')</script>
Ta sao chép toàn bộ code đã mã hóa vào chỗ embed, khi đó du khách cố tình xem nguồn code của chúng ta thì cũng chỉ xem được đoạn code đã bị mã hóa.

0phim0 hân hạnh đồng hành cùng các bạn. Cám ơn các bạn đã đọc bài viết này. Thân chào.

Không có nhận xét nào:

Đăng nhận xét