Pages

Tuesday, August 12, 2014

Loading Time Indicator


Hey blogger! This is another cool blogger gadget to your blog. " Loading Time Indicator" is a small and clear blogger gadget. Its indicate your blogger loading time. ill have a many loading time indicators. but here you can get good loading time indicator gadget! so its very easy to add your blog. please follow below steps. congrates!


1.Login to your blogger Dashboard and go to Desing --> Page Elements.

2.Click on Add a Gadget on the sidebar.

3.Select HTML/Javascript and add the one of code given below


<!-- INSTALL LOADING TIME INDICATOR By www.bdlab.blogspot.com:------>

<script type="text/javascript">
<!-- Begin
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Abraham Joffe :: http://www.abrahamjoffe.com.au/ */

var startTime=new Date();

function currentTime(){
var a=Math.floor((new Date()-startTime)/100)/10;
if (a%1==0) a+=".0";
document.getElementById("endTime").innerHTML=a;
}

window.onload=function(){
clearTimeout(loopTime);
}

// End -->
</script>
<script type="text/javascript">
<!-- Begin
document.write(This page took <span id="endTime">0.0</span> seconds to load.);
var loopTime=setInterval("currentTime()",100);
// End -->
</script>

<!-- Code End www.bdlab.blogspot.com ------>

4. Now Click On Save JavaScript You are done....




Read More..

Sunday, August 10, 2014

How To Add Top Navigation menu Bar To Blogger



STEP #1
Log in to Blogger -> Layout -> Edit HTMLand select the tick-boxExpand Widget Templates
Then, find (CTRL+F) this code in the template:

]]></b:skin>
And immediately before it, paste this code:

/*URL: http://bdlab.blogspot.com/*/

.basictab{
padding: 3px 0;
margin-left: 0;
font: bold 12px Verdana;
border-bottom: 1px solid gray;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.basictab li{
display: inline;
margin: 0;
}

.basictab li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid gray;
border-bottom: none;
background-color: #f6ffd5;
color: #2d2b2b;
}

.basictab li a:visited{
color: #2d2b2b;
}

.basictab li a:hover{
background-color: #DBFF6C;
color: black;
}

.basictab li a:active{
color: black;
}

.basictab li.selected a{ /*selected tab effect*/
position: relative;
top: 1px;
padding-top: 4px;
background-color: #DBFF6C;
color: black;
}

NOW CLICK SAVE TEMPLATE


Add The Menu To Our Template

Go To your Blogger Dashboard, Layout >> Page Elements >>

and now above blog posts area, click add gadget,



image
Then add this code in to it:

<ul class="basictab">
<li class="selected"><a href="http://bdlab.blogspot.com">Home</a></li>
<li><a href="http://bdlab.blogspot.com/">Blogger Templates</a></li>
<li><a href="http://bdlab.blogspot.com/">Blogegr Tricks</a></li>
<li><a href="#">Edit</a></li>
<li><a href="#">Edit</a></li>
<li><a href="#">Edit</a></li>
<li><a href="#">Edit</a></li>
</ul>

Now click Save
Read More..

Monday, August 4, 2014

Q What are bursts Explain various types of bursts

Burst
A term, usually associated with a TDMA system, describing a group of bits or other
information transmitted by the system. Also refers to the time the transmitter is on and radiating.
The
normal burst (NB)
: Used to carry information on traffic and control channels, except
for RACH. It contains 116 encrypted bits.
The
frequency correction burst (FB
): Used for frequency synchronization of the mobile.
The contents of this burst are used to calculate an unmodulated, sinusoidal oscillation, onto
which the synthesizer of the mobiles is clocked.
The
synchronization burst (SB)
: Used for time synchronization of the mobile. It contains
a long training sequence and carries the information of a TDMA frame number.
The
access burst (AB)
: Used for random access and characterized by a longer guard period
(256 ms) to allow for burst transmission from a mobile that does not know the correct
timing advance at the first access to a network (or after handover).
The
dummy burst (DB)
: Transmitted as a filler in unused timeslots of the carrier; does not
carry any information but has the same format as a normal burst (NB
Read More..