Sabtu, 25 September 2010

Cara Membuat dan Memasang Javascript ToolTip dengan Efek Transparansi

Mencoba memberikan panduan BloGGeR melalui BlogDETIK yang melibatkan penggunaan kode html memang merupakan tantangan tersendiri yang membutuhkan pemikiran lebih. Dari usaha yang aku lakukan untuk mencari sebuah Panduan BlogDETIK ataupun Tutorial BlogDETIK yang mengupas tentang bagaimana menciptakan posting kode html dan javascript paling tepat ternyata tidak ada sama sekali. Kembali aku harus memeras otak ku yang sudah semakin lemot untuk mensiasati supaya tutorial BloGGeR ataupun yang lain dalam bentuk kode html dan javascript, dengan mudah dapat langsung di copy paste dalam ruang edit html.
Dalam Panduan dan Tutorial BloGGeR kali ini kita akan membuat sebuah tooltip yang dapat digunakan dengan amat mudah tetapi mampu menyuguhkan sebuah tampilan yang amat cantik karena dilengkapi dengan efek transparansi. Javascriptnya terhitung irit karena beban yang ditanggung tak lebih dari 6kb. Menggunakan tooltip ini ditanggung akan memberi kepuasan tersendiri. Ya …, karena cara penggunaannya  amat praktis dan sederhana sehingga membuat posting yang kita lakukan tidak banyak terhambat hanya karena rumitnya menambahkan kode baru pelengkap tooltip. Untuk melihat seperti apa bentuk tooltip ini sampeyan bisa KLIK di sini.
Cara membuat tooltip dengan efek transparansi :
  1. Login : Untuk login ke BloGSPOT atau BloGGeR tuliskan User Name/alamat email serta Password (Sandi) .
  2. Dasboard : Setelah login dilakukan, sampeyan akan dibawa ke halaman dasbor. KLIK Layout (Tata Letak).
  3. Tata Letak : KLIK link Edit HTML.
  4. Amankan Template (backup template) : KLIK link Download Template Lengkap, kemudian simpan desain blog (kode template) sampeyan di folder PC.
  5. : Cari tag ini. Tag penutup body letaknya di ujung terbawah template sampeyan.
  6. Copy-Paste : Copy Javascript kemudian upload terlebih dahulu di javascript hosting baru kemudian letakkan link javascript diatas tag .
  7. SAVE Template (Simpan Template) : KLIKSimpan Template“.
  8. Selamat menikmati tooltip cantik baru sampeyan.
  9. Beberapa perubahan silahkan untuk dilakukan, misalnya dalam ukuran lebar tooltip, posisi tooltip, warna teks, border serta background tooltips.
Javacsript ToolTIP with transparency effects :
/* bgs1GR- gubhugreyot-bloggerstars1 */
var OP =  navigator.userAgent.indexOf('Opera') != -1);
var IE =  navigator.userAgent.indexOf('MSIE') != -1 && !OP);
var GK =  navigator.userAgent.indexOf('Gecko') != -1);
var SA =  navigator.userAgent.indexOf('Safari') != -1);
var DOM = document.getElementById;
var tooltip = null;
function ToolTIP() {
this.width = 200; // lebar (px)
this.bgColor = "#011130"; // background
this.textFont = "Cataneo BT"; // font-family
this.textSize = 13; // font size (px)
this.textColor = "#a6c4fb"; // warna font
this.border = "2px dotted #555555"; // border
this.opacity = 80;  // opacity (0 - 100)
this.cursorDistance = 5; // jarak dari cursor (px)
this.xPos = 'right';  // posisi vertikal dari cursor
this.yPos = 'bottom';  // posisi horizontal dari cursor
this.text = '';this.height = 0;this.obj = null;this.active = false;
this.create = function() {if(!this.obj) this.init();
var s = (this.textFont ? 'font-family:' + this.textFont + '; ' : '') +
(this.textSize ? 'font-size:' + this.textSize + 'px; ' : '') +
(this.border ? 'border:' + this.border + '; ' : '') +
(this.textColor ? 'color:' + this.textColor + '; ' : '');
var t = '' + '
' + this.text + '
'; if(DOM || IE) this.obj.innerHTML = t;if(DOM) this.height = this.obj.offsetHeight; else if(IE) this.height = this.obj.style.pixelHeight; if(this.bgColor) this.obj.style.backgroundColor = this.bgColor;this.setOpacity(); this.move();this.show();} this.init = function() {if(DOM) this.obj = document.getElementById('bgsGR_ToolTip'); else if(IE) this.obj = document.all.ToolTip;} this.move = function() {var winX = getWinX() - (((GK && !SA) || OP) ? 17 : 0); var winY = getWinY() - (((GK && !SA) || OP) ? 17 : 0);var x = mouseX;var y = mouseY; if(this.xPos == 'left') {if(x - this.width - this.cursorDistance >= getScrX()) x -= this.width + this.cursorDistance;else x += this.cursorDistance;} else {if(x + this.width + this.cursorDistance > winX + getScrX()) x -= this.width + this.cursorDistance;else x += this.cursorDistance;} if(this.yPos == 'top') {if(y - this.height - this.cursorDistance >= getScrY()) y -= this.height + this.cursorDistance;else y += this.cursorDistance;} else {if(y + this.height + this.cursorDistance > winY + getScrY()) y -= this.height;else y += this.cursorDistance;} this.obj.style.left = x + 'px';this.obj.style.top = y + 'px';} this.show = function() {this.obj.style.zIndex = 69;this.active = true; this.obj.style.visibility = 'visible';} this.hide = function() {this.obj.style.zIndex = -1; this.active = false;this.obj.style.visibility = 'hidden';} this.setOpacity = function() {this.obj.style.opacity = this.opacity / 100; this.obj.style.MozOpacity = this.opacity / 100;this.obj.style.KhtmlOpacity = this.opacity / 100; this.obj.style.filter = 'alpha(opacity=' + this.opacity + ')';}} function getScrX() {var offset = 0;if(window.pageXOffset) offset = window.pageXOffset;else if(document.documentElement && document.documentElement.scrollLeft) offset = document.documentElement.scrollLeft;else if(document.body && document.body.scrollLeft) offset = document.body.scrollLeft;return offset;} function getScrY() {var offset = 0;if(window.pageYOffset) offset = window.pageYOffset;else if(document.documentElement && document.documentElement.scrollTop) offset = document.documentElement.scrollTop;else if(document.body && document.body.scrollTop) offset = document.body.scrollTop;return offset;} function getWinX() {var size = 0;if(window.innerWidth) size = window.innerWidth;else if(document.documentElement && document.documentElement.clientWidth) size = document.documentElement.clientWidth;else if(document.body && document.body.clientWidth) size = document.body.clientWidth;else size = screen.width;return size;} function getWinY() {var size = 0;if(window.innerHeight) size = window.innerHeight;else if(document.documentElement && document.documentElement.clientHeight) size = document.documentElement.clientHeight;else if(document.body && document.body.clientHeight) size = document.body.clientHeight;else size = screen.height;return size;} function getMouseXY(e) {if(e && e.pageX != null) {mouseX = e.pageX;mouseY = e.pageY;} else if(event && event.clientX != null) {mouseX = event.clientX + getScrX(); mouseY = event.clientY + getScrY();} if(mouseX < 0) mouseX = 0;if(mouseY < 0) mouseY = 0;if(tooltip && tooltip.active) tooltip.move();} function toolTip(text, width, opacity) {if(text) {tooltip = new ToolTIP();tooltip.text = text; if(width) tooltip.width = width;if(opacity) tooltip.opacity = opacity;tooltip.create();} else if(tooltip) tooltip.hide();} document.write(''); var mouseX = mouseY = 0; document.onmousemove = getMouseXY;
Copy paste tanpa harus melakukan perubahan apapun, seperti halnya tanda petik dua (”) dan yang lain.
Cara menuliskan teks link baru yang dilengkapi tooltip :
Bentuk link Javascript ToolTip di atas tag :

Tutorial Lain


Kamis, 23 September 2010

Agar Blog Langsung Mendeteksi Mobile Browser / Versi Hp


(Agar Blog Langsung Di Alihkan ke Handphone, Agar Blog Di Redirect ke Hp, Agar Blogger di arahkan ke Hp, Membuat Blog Versi Hp, blog versi komputer langsung ke Hp)
Banyak cara agar pelanggan setia pengunjung blog anda bisa mengakses blog anda walaupun dengan Handphone

Berikut ini caranya :
>> Silahkan menuju ke http://bloggertouch.sopili.net/mobile-edition-maker
>> Masukkan alamat blog anda, jika alamat blog anda sudah Custom domain (ganti domain) klik Custom Domain di bawah form input, Jika sudah klik Go, jika minta login, Login lah dengan akun google (Id blogger) anda. Karena layanan ini milik google, Kemudian masukkan username untuk domain touch anda, Misal http://bloggertouch.appspot.com/rhoedal klik Chek Availability apakah tersedia atau tidak username yang anda inginkan. Jika ada tulisan Available berarti tersedia kemudian klik next, klik lagi Add Code, jika sudah akan ada Popup, klik lagi Menambah Widget, kembali lagi ke blogger touch, klik next di bawa ke halaman baru dan klik Verification
Selesai, sekarang anda buka blog anda dengan hp.

Fitur yang di dukung oleh Blogger touch
* Support Google Analytics
* Support Adsense
* Support Search Widget
* Support Pagination
* Support Pages

Sekarang coba anda kunjungi http://bloggertouch.appspot.com/rhoedal selamat mencoba semoga bermanfaat...


Mobile GPS Android Motorola Twist With Touchscreen and Social Network


Motorola Twist

Complete Specifications Motorola Twist

Motorola announced a new Android phone which is named "Motorola Twist" touchscreen handset is equipped with a slider keyboard is not yet clear when this will be launched, but leaks about the specification has been circulating on the Internet. Also brought a complete specification, this handset using the Android OS, v2.1 (eclair) and the TI OMAP3410 Processor 700MHz processor. Motorola Twist also given features Social Network Apps which are now mandatory every handset menu.

Specification:
  • OS: Android OS, v2.1 (eclair)
  • Processor: 700MHz TI OMAP3410 processor
  • Screen: TFT touchscreen, 256K colors, 320 x 320 pixels, 2.8 inches, QWERTY keyboard, UI Accelerometer sensor for auto-rotate, with Live MOTOBLUR UI Widgets
  • Network: 2G GSM 850 / 900 / 1800 / 1900, 3G HSDPA 850/1900
  • Size / Model: 67 x 67 x 15.8 mm, 118 g / QWERTY Slider (Touchscreen)
  • Memory: 256 MB internal RAM, 512 MB ROM, microSD external, up to 32GB,
  • Application: SMS, AMS, MMS, Email, Push Email, IM, Games
  • Connection: GPRS Class 10 (4 +1 / 3 +2 slots), 32-48 kbps, EDGE Class 10, 236.8 kbps, HSDPA 3.6 Mbps, Wi-Fi 802.11 b / g, Bluetooth v2.0 with A2DP, microUSB v2. 0
  • Camera: 3:15 MP, 2048x1536 pixels, video
  • Color Options: Black
  • Browser: WAP 2.0/xHTML, HTML, JAVA applications via third party
  • Battery: Li-Ion 940 mAh

Other Features:
  • Google Maps with Street View
  • A-GPS support
  • MP4/H.264/H.263 player
  • Voice memo / dial
  • T9
  • MP3/eAAC + / WAV player
  • Facebook, MySpace, Twitter apps
  • Organizer
  • Document viewer


Selasa, 21 September 2010

affiliate program

GET INCOME FROM YOUR WEBPAGE

Turn your valuable blog traffic into revenue.
Work online and join our free money making affiliate program.
We offer the most pay-per-click rate to help maximize your
income stream.

Join our income making program absolutely free and 100% risk free.

Sign Up...

FREE INVESTMENT PROGRAM

We designed this money making program
specially for NO SETUP FEE methods,
to make hundreds, if not millions of dollars, without spending dollars.

Begin collecting serious partner revenue

Our money making program really
can make you income on the same day.
Start receiving steady partner revenue with
almost no effort at all. This is a serious business
opportunity, the first step for you to create a steady, reliable,
long-time profitable business.

A steady income generator

Imagine getting of a something that never failed to provide you with
income-flow.
A money making system
so incredibly profitable that you never had to work for a boss ever again!

Mentis-Sonitus Le système de rémunération des Affiliés Mentis Sonitus


Twitter Delicious Facebook Digg Favorites More