PROFILE BIAS TUTORIAL FREEBIES TWITTER FOLLOW D'BOARD BACK
Hello!


Hello guys ! i`m Miza Amirah..Thanks for visited my blog, nice to meet you , Do follow me if you don't mind ^^ And do read my blog :)

Tagboard!


D'Followers

My Post

  • Image hover # Berputar
  • Jquery Top Button
  • Header hover # Berpusing 360 darjah
  • Scrollbar Hover
  • Font Bertukar di Link
  • Double Underline
  • Note di Bawah Post
  • Follow and Dashboard Button
  • Snow Effect Pink Colour
  • Facebook Like Button
  • Thanks Bear

    Template 100%: Atin Tory
    Editor: Miza
    Help: AtiQah Kiwi6
    Welcome Note
    Sabtu, 29 Disember 2012 | 1:39 PG | 0 comments



    Assalamualaikum. Hai semuaa. Hari ni Miza nak ajar korang cara untuk letak Welcome note dalam blogskin. So, tutorial ni khas untuk pengguna template classic/blogskin sahaja. Take note yeay!

    1. Dashboard > Template
    2. Tekan Ctrl+f serentak dan cari code </style>
    3. Lepas tu, copy code dekat bawah ni


    .welcome {text-align:center;margin-top: 250px;}


    4. Paste di atas code </style> tadi
    5. Then cari code ni pulak

    <body oncontextmenu='return false;'>
     6. Dah jumpa? Ok bagus. Kemudian, copy code dekat bawah ni



    <script language="javascript" type="text/javascript">
    /* toggle() checks to see if the images has already been faded
    or not and sends the appropriate variables to opacity(); */
    function toggle(el,milli) {
    // Get the opacity style parameter from the image
    var currOpacity = document.getElementById(el).style.opacity;
    if(currOpacity != 0) { // if not faded
    fade(el, milli, 100, 0);
    } else { // else the images is already faded
    fade(el, milli, 0, 100);
    }
    }
    /* changeOpacity() uses three different opacity settings to
    achieve a cross-browser opacity changing function. This
    function can also be used to directly change the opacity
    of an element. */
    function changeOpacity(el,opacity) {
    var image = document.getElementById(el);
    // For Mozilla
    image.style.MozOpacity = (opacity / 100);
    // For IE
    image.style.filter = "alpha(opacity=" + opacity + ")";
    // For others
    image.style.opacity = (opacity / 100);
    }
    /* fade() will fade the image in or out based on the starting
    and ending opacity settings. The speed of the fade is
    determined by the variable milli (total time of the fade
    in milliseconds)*/
    function fade(el,milli,start,end) {
    var fadeTime = Math.round(milli/100);
    var i = 0; // Fade Timer
    // Fade in
    if(start < end) {
    for(j = start; j <= end; j++) {
    // define the expression to be called in setTimeout()
    var expr = "changeOpacity('" + el + "'," + j + ")";
    var timeout = i * fadeTime;
    // setTimeout will call 'expr' after 'timeout' milliseconds
    setTimeout(expr,timeout);
    i++;
    }
    }
    // Fade out
    else if(start > end) {
    for(j = start; j >= end; j--) {
    var expr = "changeOpacity('" + el + "'," + j + ")";
    var timeout = i * fadeTime;
    setTimeout(expr,timeout);
    i++;
    }
    }
    }
    </script>
    <div class="welcome" onClick="javascript:toggle('wise', 3000); this.style.display='none'; document.getElementById('june').style.display=''">
    <img src="URL GAMBAR"
    style="opacity:0.4;filter:alpha(opacity=40)"
    onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100"
    onmouseout="this.style.opacity=0.7;this.filters.alpha.opacity=40"/>
    </div>
    <div id="wise" style="filter : alpha(opacity=0); -moz-opacity : 0; opacity : 0;">
    <div id="june" style="display : none;">



    7. Then paste di atas code <body oncontextmenu='return false;'> atau <body>
    8. Gantikan URL GAMBAR dengan gambar yang korang suka. Korang bodek2 lah kt Pakcik Google.. Miza malas sikit nak share =P



    Exchanged Link





    Meet the owner here


    Name : Miza Amirah , famous as Mija
    Age : 17 years old SPM
    Fav.food : Anything that delicious and Halal
    Fav.drink : Neslo ais & Epal laici
    Birthday : Blow candles , once in a year. 23 February 2000
    Born of place : Kajang , Selangor
    Hobbies : Blogging , Tweeter-ing , Surfing web
    Fav.colour : Biru , Hitam & Purple
    Bias : BTS and probably Exo

    My Biases



    SUGA

    J-HOPE

    SEOKJIN

    JUNGKOOK

    SOOYOUNG




    Welcome Note
    Sabtu, 29 Disember 2012 | 1:39 PG | 0 comments



    Assalamualaikum. Hai semuaa. Hari ni Miza nak ajar korang cara untuk letak Welcome note dalam blogskin. So, tutorial ni khas untuk pengguna template classic/blogskin sahaja. Take note yeay!

    1. Dashboard > Template
    2. Tekan Ctrl+f serentak dan cari code </style>
    3. Lepas tu, copy code dekat bawah ni


    .welcome {text-align:center;margin-top: 250px;}


    4. Paste di atas code </style> tadi
    5. Then cari code ni pulak

    <body oncontextmenu='return false;'>
     6. Dah jumpa? Ok bagus. Kemudian, copy code dekat bawah ni



    <script language="javascript" type="text/javascript">
    /* toggle() checks to see if the images has already been faded
    or not and sends the appropriate variables to opacity(); */
    function toggle(el,milli) {
    // Get the opacity style parameter from the image
    var currOpacity = document.getElementById(el).style.opacity;
    if(currOpacity != 0) { // if not faded
    fade(el, milli, 100, 0);
    } else { // else the images is already faded
    fade(el, milli, 0, 100);
    }
    }
    /* changeOpacity() uses three different opacity settings to
    achieve a cross-browser opacity changing function. This
    function can also be used to directly change the opacity
    of an element. */
    function changeOpacity(el,opacity) {
    var image = document.getElementById(el);
    // For Mozilla
    image.style.MozOpacity = (opacity / 100);
    // For IE
    image.style.filter = "alpha(opacity=" + opacity + ")";
    // For others
    image.style.opacity = (opacity / 100);
    }
    /* fade() will fade the image in or out based on the starting
    and ending opacity settings. The speed of the fade is
    determined by the variable milli (total time of the fade
    in milliseconds)*/
    function fade(el,milli,start,end) {
    var fadeTime = Math.round(milli/100);
    var i = 0; // Fade Timer
    // Fade in
    if(start < end) {
    for(j = start; j <= end; j++) {
    // define the expression to be called in setTimeout()
    var expr = "changeOpacity('" + el + "'," + j + ")";
    var timeout = i * fadeTime;
    // setTimeout will call 'expr' after 'timeout' milliseconds
    setTimeout(expr,timeout);
    i++;
    }
    }
    // Fade out
    else if(start > end) {
    for(j = start; j >= end; j--) {
    var expr = "changeOpacity('" + el + "'," + j + ")";
    var timeout = i * fadeTime;
    setTimeout(expr,timeout);
    i++;
    }
    }
    }
    </script>
    <div class="welcome" onClick="javascript:toggle('wise', 3000); this.style.display='none'; document.getElementById('june').style.display=''">
    <img src="URL GAMBAR"
    style="opacity:0.4;filter:alpha(opacity=40)"
    onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100"
    onmouseout="this.style.opacity=0.7;this.filters.alpha.opacity=40"/>
    </div>
    <div id="wise" style="filter : alpha(opacity=0); -moz-opacity : 0; opacity : 0;">
    <div id="june" style="display : none;">



    7. Then paste di atas code <body oncontextmenu='return false;'> atau <body>
    8. Gantikan URL GAMBAR dengan gambar yang korang suka. Korang bodek2 lah kt Pakcik Google.. Miza malas sikit nak share =P



    Tutorial !


    Tutorials For Blog
    IMAGE HOVER
    Image Hover #Lebih Terang Image Hover #Jadi Kabur Image Hover #Membesar Image Hover #Menyenget Image Hover #Rainbow Image Hover #Melengkung
    BLOGSKIN
    Convert to Template Designer Buat Tutorial Pages Letak Cursor Cara nak Download Blogskin Cute Bubble Cursor Disable Right Click Highlight Text Tukar Background Tukar Title Snow Effect White Colour Snow Effect Pink Colour Letak Cute Favicon Click Navigate Terus Ke Link Own Navbar Letak Link di Post Title Tukar Bullet Kepada Icon Twitter Follow Button Add Navigate Header Hover #Berpusing 360 Darjah Header Hover #Ketepi dan Hilang Background Post Body Buang Disable Right Click Facebook Like Button Follow and Dashboard Button Note di Bawah Post Double Underline Font Bertukar di Link Scroll bar Hover Jquery Top Button Welcome Note Cara Nak Ambil Link Pages Letak Divider Cari Blog ID Letak Older Post Disable Highlight Text Letak Copyright Put Twitter Widget Tukar Older and Newer Post Kepada Icon
    Freebies !


    Freebies for You
    BACKGROUND
    Background 1 #Polka Dot Background 2 #Star Background 3 #Star Background 4 #Stripes Background 5 #Stripes Background 6 #Cute Flower Background 7 #Polka Dots
    TOP BUTTON
    Top Button #1 Top Button #2 Top Button #3 Top Button #4 Top Button #5 Top Button #6
    CURSOR
    Cursor #1 Cursor #2 Cursor #3 Cursor #4 Cursor #5 Cursor #6 Cursor #7 Cursor #8 Cursor #9 Cursor #10 Cursor #11 Cursor #12
    OTHERS
    Greeting Image #1 Greeting Image #2 Greeting Image #3 Header #1 Header #2