Tampilkan postingan dengan label Widget. Tampilkan semua postingan
Tampilkan postingan dengan label Widget. Tampilkan semua postingan

Senin, 29 Januari 2018

Cara Mudah Membuat Pop Up Like Facebook Di Blog

Cara Mudah Membuat Pop Up Like Facebook Di Blog

Beberapa blogger menggunakan Pop Up Like Facebook untuk meningkatan jumlah view di fanspage dan blog mereka. Namun, tak jarang pula, cara ini sedikit mengganggu pengunjung yang mampir di blog mereka.Itu adalah sebagian yang kubaca ketika mendapatkan script kode ini dari salah satu blog yang kemarin aku kunjungi. Script widget ini pun juga banyak sekali di share oleh beberapa blogger yang sememangnya memasang kode tersebut pada blog mereka. Dan, sebelum mengeshare script ini, tentu aku telah mencobanya terlebih dahulu di blogku. Biar dikira nggak gagal gitulah. Rada gimana gitu kalau pas dicobain orang lain ternyata scripsnya malah nggak working.

Widget Pop Up Like Fanspage yang aku pasang ini dijamin nggak bakalan menggangu para pengunjung yang singgah di blog kita. Karena, pop up yang aku gunakan, hanya muncul sekali dalam sehari pada viewer yang sama. Jadi, nggak bisa berkali-kali muncul seperti yang sering digunakan pada blog berita itu. Karena, biasanya para pengunjung itu kurang suka atau kemungkinan takut ngelike fanspage kita. Itu yang banyak kubaca dari keluhan para viewer lain. Atau bisa jadi, mereka pikir itu link virus yang membuat mereka enggan lagi berkunjung. Soalnya kan mendadak muncul gitu.




Pop up ini akan muncul beberapa saat setelah blog kalian di buka. Aku sudah mengatur timingnya agar pas buka blog kita nggak langsung ikutan muncul juga. Ketika  pop up terbuka, pada sisi bagian belakang akan terlihat gelap dan tampilan depan pop up  yang kita gunakan akan terlihat terang. Karena script kodenya hampir sama, jadi semua tampilan akan terlihat sama. Selain itu, Widget ini juga memiliki tampilan yang berbeda, yakni dengan menggunakan dua tombol close dan like. Nanti pengunjung tak perlu takut, jika ingin like ya bisa di like. Atau jika tak mau ya tinggal di close sesuai panah silangnya itu saja.

Lalu gimana caranya untuk membuat Pop Up Like Facebook di Blog? Mudah banget. Simak tutorial berikut ini.

Cara Membuat Pop UP Like Facebook Di Blog


  • Seperti biasa, Login ke akun blogger.com kalian
  • Pada bagian Tata Letak (Layout), Klik Tambahkan Gadget (pilih tempatnya sesuai dengan  yang kalian inginkan), Lalu pilih HTLM/Java Script. Dan setelah itu, masukan kode di bawah ini.


 <script src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'></script>
<style>
#fanback {
  display:none;
  background:rgba(0,0,0,0.8);
  width:100%;
  height:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:99999;
}

#fan-exit {
  width:100%;
  height:100%;
}

#fanbox {
  background:white;
  width:420px;
  height:270px;
  position:absolute;
  top:58%;
  left:63%;
  margin:-220px 0 0 -375px;
  -webkit-box-shadow: inset 0 0 50px 0 #939393;
  -moz-box-shadow: inset 0 0 50px 0 #939393;
  box-shadow: inset 0 0 50px 0 #939393;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: -220px 0 0 -375px;
}

#fanclose {
  float:right;
  cursor:pointer;
  background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigmipIEDUksHmToQxDVy9P_w5VYug02UfvFY9XvLDynDFrJs8-EpLCSuBWv9hiR7JSTLf8iugCP7WDD_2rZjUhWhXdjx0oJsqcU-tcmf7dFlvSGIeUV7FPCoW9qstDz26iDZw48NmeZD_a/s1600/fanclose.png) repeat;
  height:15px;
  padding:20px;
  position:relative;
  padding-right:40px;
  margin-top:-20px;
  margin-right:-22px;
}

.remove-borda {
  height:1px;
  width:366px;
  margin:0 auto;
  background:#F3F3F3;
  margin-top:16px;
  position:relative;
  margin-left:20px;
}

#linkit,#linkit a.visited,#linkit a,#linkit a:hover {
  color:#80808B;
  font-size:10px;
  margin: 0 auto 5px auto;
  float:center;
}
 </style> 
 <script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
  // key and at least value given, set cookie...
  if (arguments.length > 1 && String(value) !== "[object Object]") {
    options = jQuery.extend({}, options);
    if (value === null || value === undefined) {
      options.expires = -1;
    }
    if (typeof options.expires === 'number') {
      var days = options.expires, t = options.expires = new Date();
      t.setDate(t.getDate() + days);
    }
    value = String(value);
    return (document.cookie = [
      encodeURIComponent(key), '=',
      options.raw ? value : encodeURIComponent(value),
      options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
      options.path ? '; path=' + options.path : '',
      options.domain ? '; domain=' + options.domain : '',
      options.secure ? '; secure' : ''
    ].join(''));
  }

  // key and possibly options given, get cookie...
  options = value || {};
  var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
  return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
//]]>
</script>

<script type='text/javascript'>
jQuery(document).ready(function($){
  if($.cookie('popup_facebook_like') != 'yes'){
    $('#fanback').delay(5000).fadeIn('medium');
    $('#fanclose, #fan-exit').click(function(){
      $('#fanback').stop().fadeOut('medium');
    });
  }
  $.cookie('popup_facebook_like', 'yes', { path: '/', expires: 7 });
});
</script>
<div id='fanback'>
  <div id='fan-exit'></div>
\
  <div id='fanbox'>
\
   <div id='fanclose'></div>
   <div class='remove-borda'></div>
   <iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?href=https://www.facebook.com/blogdandesaintutorial&width=402&height=255&colorscheme=light&show_faces=true&show_border=false&stream=false&header=false' style='border: none; overflow: hidden; margin-top: -19px; width: 402px; height: 230px;'></iframe>
  </div>
</div>  




Catatan :


  • Jika kalian memasang script kode di atas, maka tampilannya hanya akan muncul dalam 7 hari sekali untuk 1 pengunjung aktif. Untuk merubahnya kalian tinggal ganti Kode 7 Menjadi 1. Lihat kode warna biru seperti ini $.cookie('popup_facebook_like', 'yes', { path: '/', expires: 7 }); atau kalian bisa menghapusnya. Biasanya akan muncul setiap waktu. Tapi, aku rasa ini nggak efisien. Soalnya, ya sekali udah di klik sama pengunjung, buat apa ditampilin lagi. Saranku sih, biar pengunjung nggak terganggu.



  • Jangan lupa untuk mengubah delay atau tampilan pop up. Jika kalian tidak merubahnya, maka pop up ini akan muncul pada detik kelima. Untuk pengaturan pop up tampilan blog, silahkan ganti kode ini delay(5000). Untuk per 1000 = 1 detik. Jadi ketika kalian menggantinya menjadi 5000 maka pop up akan otomatis keluar saat detik kelima. Untuk membuatnya sedikit lebih lama, kalian bisa menggunakan delay yang lebih. Misal : 
                                                  1000 = 1 detik 
                                                  5000 = 5 detik
                                                 10000 = 10 detik

  • Selain merubah kode-kode di atas, kalian juga bisa mengatur tampilan pop up sesuai keinginan kalain sendiri. Entah mau ganti warna tepian pop up atau sekedar mengganti panjang dan lebarnya.  Untuk pemilihan warna kalian bisa lihat di kode warna HTML di sini


  • Jika semua proses telah selesai, silahkan klik Save atau simpan dan sekarang kalian bisa melihat hasilnya. Jika kurang puas, kalian bisa menyuruh teman untuk melihat hasilya. Jika kurang paham, kalian bisa lihat foto di bawah ini.
Cara Memasukan Script Kode Pop Up




Cukup mudah kan? Bisa langsung di coba di Blog kalian ya. Diharapkan setelah mencoba tidak mencopas tulisan ini kecuali script kodenya.

Jika kalian suka dengan tutorial ini, jangan lupa buat add dan like fanspage Blog Tuturial & Desain Grafis.  Tambahkan aku di akun G+ kalian juga, biar kita bisa saling BW an. Silahkan komen jika ada perntanyaan dan biasakan membacanya sampai tuntas. Salam emak-emak GO-BLOG.
Readmore → Cara Mudah Membuat Pop Up Like Facebook Di Blog

Jumat, 15 Desember 2017

Privacy Police

Privacy Policy for Jemari GO-Blog

If you require any more information or have any questions about our privacy policy, please feel free to contact us by email at http://www.zhiangzieyie.com/2018/01/contact-us.html.
At www.zhiangzieyie.com we consider the privacy of our visitors to be extremely important. This privacy policy document describes in detail the types of personal information is collected and recorded by www.zhiangzieyie.com and how we use it.
Log Files
Like many other Web sites, www.zhiangzieyie.com makes use of log files. These files merely logs visitors to the site - usually a standard procedure for hosting companies and a part of hosting services's analytics. The information inside the log files includes internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date/time stamp, referring/exit pages, and possibly the number of clicks. This information is used to analyze trends, administer the site, track user's movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.
Cookies and Web Beacons
www.zhiangzieyie.com uses cookies to store information about visitors' preferences, to record user-specific information on which pages the site visitor accesses or visits, and to personalize or customize our web page content based upon visitors' browser type or other information that the visitor sends via their browser.
DoubleClick DART Cookie
→ Google, as a third party vendor, uses cookies to serve ads on www.zhiangzieyie.com.
→ Google's use of the DART cookie enables it to serve ads to our site's visitors based upon their visit to www.zhiangzieyie.com and other sites on the Internet.
→ Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at the following URL - http://www.google.com/privacy_ads.html
Our Advertising Partners
Some of our advertising partners may use cookies and web beacons on our site. Our advertising partners include .......

  • Google
  • Commission Junction
  • Amazon
  • Widget Bucks
  • Adbrite
  • Clickbank
  • Linkshare
  • Yahoo! Publisher Network
  • Azoogle
  • Chitika
  • Kontera
  • TradeDoubler
  • Other
While each of these advertising partners has their own Privacy Policy for their site, an updated and hyperlinked resource is maintained here: Privacy Policies.
You may consult this listing to find the privacy policy for each of the advertising partners of www.zhiangzieyie.com.

These third-party ad servers or ad networks use technology in their respective advertisements and links that appear on www.zhiangzieyie.com and which are sent directly to your browser. They automatically receive your IP address when this occurs. Other technologies (such as cookies, JavaScript, or Web Beacons) may also be used by our site's third-party ad networks to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on the site.
www.zhiangzieyie.com has no access to or control over these cookies that are used by third-party advertisers.

Third Party Privacy Policies
You should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. www.zhiangzieyie.com's privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites. You may find a comprehensive listing of these privacy policies and their links here: Privacy Policy Links.
If you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browsers' respective websites. What Are Cookies?
Children's Information
We believe it is important to provide added protection for children online. We encourage parents and guardians to spend time online with their children to observe, participate in and/or monitor and guide their online activity. www.zhiangzieyie.com does not knowingly collect any personally identifiable information from children under the age of 13. If a parent or guardian believes that www.zhiangzieyie.com has in its database the personally-identifiable information of a child under the age of 13, please contact us immediately (using the contact in the first paragraph) and we will use our best efforts to promptly remove such information from our records.
Online Privacy Policy Only
This privacy policy applies only to our online activities and is valid for visitors to our website and regarding information shared and/or collected there. This policy does not apply to any information collected offline or via channels other than this website.
Consent
By using our website, you hereby consent to our privacy policy and agree to its terms.


Update
This Privacy Policy was last updated on: Monday, January 22nd, 2018. Privacy Policy Online Approved Site
Should we update, amend or make any changes to our privacy policy, those changes will be posted here.

Readmore → Privacy Police

Featured Post

SEMUA TENTANG MAS KER