rar password ေတာင္းခဲ့လွ်င္

Home » , , , » Slide Out Info Text when Mouse Hover On an Image

Slide Out Info Text when Mouse Hover On an Image

မိမိ Post မွာ ပံုေလးေတြတင္တဲ့အခါ ပံုမွာ Slide Out Text ေလးေတြ ထည့္တဲ့နည္းေလးကို ျပန္လည္မွ်ေဝခ်င္ပါတယ္...။ပံုေလးေပၚကို Mouse ကိုေရႊ႕လိုက္ရင္ Slide Out Text Info ေလး ထြက္လာတာေလးပါ။ ဘယ္လိုမ်ိဳးေလးဆိုတာကို ေတာ့ Demo အေနနဲ႔ ဒီမွာ အရင္ၾကည့္လိုက္ပါ..။ သေဘာက်တယ္ ဆိုရင္ေတာ့ ေအာက္မွာ ေျပာျပထားတဲ့ အတိုင္း လုပ္ၾကည့္လိုက္ပါ ..။
စလုပ္ၾကည့္ၾကမယ္ေနာ္


  • ပထမဆံုး Blogger Dashboard ကို Blogger အေကာင့္နဲ႔ ဝင္လိုက္ပါ။
  • ျပီးရင္ေတာ့ Template>>>> Customize ကို သြားလိုက္ပါ
  • ျပီးရင္ေတာ့ Advanced>>> ကိုဆက္သြားပါ...။ျပီးရင္ေတာ့ Add CSS ဆိုတာကို ရွာလိုက္ပါ..။ ေတြျပီးဆို ကလစ္ေလး ေပးလိုက္ပါ..။ ဒီေတာ့ Css Code ေတြ ထည့္မယ္ Box တစ္ခု က်လာမွာ ျဖစ္ပါတယ္ ...။ ပံုေတာ့ မတင္ေတာ့ဘူး အားလံုး သိျပီးသားျဖစ္မယ္လို႔ ထင္လို႔ပါ...။ Css ေတြ ထည့္မယ့္ Box မွာ ေအာက္မွာ ေပးထားတဲ့ ကုဒ္ေတြကို Copy ယူျပီး ကူးထည့္လိုက္ပါ။ ျပီးရင္ေတာ့ Apply To Blog ဆိုတဲ့ ညာဘက္အေပၚဆံုးနားက စာတန္းကို ကလစ္ျပီး Save လိုက္ပါ...။ 


.imagepluscontainer{ /* main image container */
position: relative;
z-index: 1;
}

.imagepluscontainer img{ /* CSS for image within container */
position: relative;
z-index: 2;
-moz-transition: all 0.5s ease; /* Enable CSS3 transition on all props */
-webkit-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}

.imagepluscontainer:hover img{ /* CSS for image when mouse hovers over main container */
-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
-moz-transform: scale(1.05, 1.05);
-webkit-transform: scale(1.05, 1.05);
-ms-transform: scale(1.05, 1.05);
-o-transform: scale(1.05, 1.05);
transform: scale(1.05, 1.05);
}

.imagepluscontainer div.desc{ /* CSS for desc div of each image. */
position: absolute;
width: 90%;
z-index: 1; /* Set z-index to that less than image's, so it's hidden beneath it */
bottom: 0; /* Default position of desc div is bottom of container, setting it up to slide down */
left: 5px;
padding: 8px;
background: rgba(0, 0, 0, 0.8); /* black bg with 80% opacity */
color: white;
-moz-border-radius: 0 0 8px 8px; /* CSS3 rounded borders */
-webkit-border-radius: 0 0 8px 8px;
border-radius: 0 0 8px 8px;
opacity: 0; /* Set initial opacity to 0 */
-moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.8); /* CSS3 shadows */
-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
-moz-transition: all 0.5s ease 0.5s; /* Enable CSS3 transition on desc div. Final 0.5s value is the delay before animation starts */
-webkit-transition: all 0.5s ease 0.5s;
-o-transition: all 0.5s ease 0.5s;
-ms-transition: all 0.5s ease 0.5s;
transition: all 0.5s ease 0.5s;
}

.imagepluscontainer div.desc a{
color: white;
}

.imagepluscontainer:hover div.desc{ /* CSS for desc div when mouse hovers over main container */
-moz-transform: translate(0, 100%);
-webkit-transform: translate(0, 100%);
-ms-transform: translate(0, 100%);
-o-transform: translate(0, 100%);
transform: translate(0, 100%);
opacity:1; /* Reveal desc DIV fully */
}

/*### Below CSS when applied to desc DIV slides the desc div from the right edge of the image ###*/

.imagepluscontainer div.rightslide{
width: 150px; /* reset from default */
top:15px;
right:0;
left:auto;  /* reset from default */
bottom:auto;  /* reset from default */
padding-left:15px;
-moz-border-radius: 0 8px 8px 0;
-webkit-border-radius: 0 8px 8px 0;
border-radius: 0 8px 8px 0;
}

.imagepluscontainer:hover div.rightslide{
-moz-transform: translate(100%, 0);
-webkit-transform: translate(100%, 0);
-ms-transform: translate(100%, 0);
-o-transform: translate(100%, 0);
transform: translate(100%, 0);
}

/*### Below CSS when applied to desc DIV slides the desc div from the left edge of the image ###*/

.imagepluscontainer div.leftslide{
width: 150px;  /* reset from default */
top:15px;
left:0;
bottom:auto;  /* reset from default */
padding-left:15px;
-moz-border-radius: 8px 0 0 8px;
-webkit-border-radius: 8px 0 0 8px;
border-radius: 8px 0 0 8px;
}

.imagepluscontainer:hover div.leftslide{
-moz-transform: translate(-100%, 0);
-webkit-transform: translate(-100%, 0);
-ms-transform: translate(-100%, 0);
-o-transform: translate(-100%, 0);
transform:translate(-100%, 0);
}

/*### Below CSS when applied to desc DIV slides the desc div from the top edge of the image ###*/

.imagepluscontainer div.upslide{
top:0;
bottom:auto;  /* reset from default */
padding-bottom:10px;
-moz-border-radius: 8px 8px 0 0;
-webkit-border-radius: 8px 8px 0 0;
border-radius: 8px 8px 0 0;
}

.imagepluscontainer:hover div.upslide{
-moz-transform: translate(0, -100%);
-webkit-transform: translate(0, -100%);
-ms-transform: translate(0, -100%);
-o-transform: translate(0, -100%);
transform:translate(0, -100%);
}


ဒီအဆင့္ ျပီးရင္ေတာ့ က်ေနာ္ Template မွာ ျပင္ဆင္ျခင္း ျပီးသြားပါျပီ..။ မိမိတင္တဲ့ ပံုမွာ Info Slide out Text ေလး ေပၚဖို႔ အတြက္ကိုေတာ့... က်ေနာ္တို႔ Post တင္တဲ့ ေနရာမွာ ကုဒ္ေလးေတြကို သံုးရမွာ ျဖစ္ပါတယ္...။ ဒါေၾကာင့္ Create a new post ကို ဝင္လိုက္ပါ...။ ေအာက္မွာ ေပးထားတဲ့ ကုဒ္ေလးေတြကို အသံုးျပဳပါ...။ ကုဒ္ေတြကို ထည့္ရန္ HTML ကို ေရြးျပီး ထည့္ရမွာ ျဖစ္ပါတယ္ခင္ဗ်ာ...။


<div class="imagepluscontainer" style="height: 199px; width: 263px; z-index: 2;">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg59PLGxkVYs_yqFTKCu13g5BLBK2btzQ__PVZgwWTXATPh3MoKXQ9GD1f60vQ8SCKFtsW7z8px_3cOtc651tjeaWdXfMci_PpKX8Q0RMsHdBdA4ml4LOWamjT-e9pz8vc3TeP1w2J9huWC/s320/56d5126e4248a9a5e5ebab6261bfd650.gif" />
<br />
<div class="desc">
နည္းပညာေလးေတြကို ေလ့လာရင္း <a href="https://4wadi.blogspot.com/">ဘူးေရမ်က္ရြာေလးမွာ</a> မွတ္တမ္းေလး အျဖစ္ တင္ထားျခင္းသာျဖစ္ပါသည္ .
</div>
</div>
<br />
<div class="imagepluscontainer" style="height: 199px; left: 180px; width: 263px;">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg59PLGxkVYs_yqFTKCu13g5BLBK2btzQ__PVZgwWTXATPh3MoKXQ9GD1f60vQ8SCKFtsW7z8px_3cOtc651tjeaWdXfMci_PpKX8Q0RMsHdBdA4ml4LOWamjT-e9pz8vc3TeP1w2J9huWC/s320/56d5126e4248a9a5e5ebab6261bfd650.gif" />
<br />
<div class="desc rightslide">
နည္းပညာေလးေတြကို ေလ့လာရင္း <a href="https://4wadi.blogspot.com/">ဘူးေရမ်က္ရြာေလးမွာ</a> မွတ္တမ္းေလး အျဖစ္ တင္ထားျခင္းသာျဖစ္ပါသည္ .
</div>
</div>
<br />
<div class="imagepluscontainer" style="height: 199px; width: 263px;">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg59PLGxkVYs_yqFTKCu13g5BLBK2btzQ__PVZgwWTXATPh3MoKXQ9GD1f60vQ8SCKFtsW7z8px_3cOtc651tjeaWdXfMci_PpKX8Q0RMsHdBdA4ml4LOWamjT-e9pz8vc3TeP1w2J9huWC/s320/56d5126e4248a9a5e5ebab6261bfd650.gif" />
<br />
<div class="desc upslide">
နည္းပညာေလးေတြကို ေလ့လာရင္း <a href="https://4wadi.blogspot.com/">ဘူးေရမ်က္ရြာေလးမွာ</a> မွတ္တမ္းေလး အျဖစ္ တင္ထားျခင္းသာျဖစ္ပါသည္ .
</div>
</div>
<br />
<div class="imagepluscontainer" style="height: 199px; left: 180px; width: 263px;">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg59PLGxkVYs_yqFTKCu13g5BLBK2btzQ__PVZgwWTXATPh3MoKXQ9GD1f60vQ8SCKFtsW7z8px_3cOtc651tjeaWdXfMci_PpKX8Q0RMsHdBdA4ml4LOWamjT-e9pz8vc3TeP1w2J9huWC/s320/56d5126e4248a9a5e5ebab6261bfd650.gif" />
<br />
<div class="desc leftslide">
နည္းပညာေလးေတြကို ေလ့လာရင္း <a href="https://4wadi.blogspot.com/">ဘူးေရမ်က္ရြာေလးမွာ</a> မွတ္တမ္းေလး အျဖစ္ တင္ထားျခင္းသာျဖစ္ပါသည္ .
</div>
</div>
ပံုေလး ပံု တင္ထားေအးပါတယ္... ဒီ အေပၚက ကုဒ္ေတြထဲ့ ပံု၏ url ေတြ ဆိုဒ္ Link ေတြကို ကုိယ္ အသံုးျပဳမယ့္ ပံု URL ကိုယ္ သံုးမယ္ Link ေတြနဲ႔ ျပန္ေျပာင္းျပီး သံုးေပါ့ေနာ္..။ <div class="imagepluscontainer" style="height: 199px; left: 180px; width: 263px;"> ဒီကုဒ္ေတြထဲက height: 199px; left: 180px; width: 263px ေလးေတြကိုေတာ့ မိမိ၏ Temlpate Layout ႏွင့္ ကိုက္ညီေအာင္ ညိႇယူလိုက္ပါ...။ အားလံုးပဲ အဆင္ေျပမယ္လို႔ ေမွ်ာ္လင့္ပါတယ္ခင္ဗ်ာ


  ဒါေလးကို ဖတ္ေပးပါဒီဘေလာ့ေလးသည္ ဘူးေရမ်က္ရြာ (wall.fm) ဆိုဒ္ေလးမွ တည္ေထာင္ထားပါသည္ ဘာေၾကာင့္လဲဆိုေတာ့ wall.fm ဆိုဒ္မ်ား free မရေတာ့လွ်င္ ယၡဳဘေလာ့တြင္ ဆက္လက္မွ်ေဝသြားႏိုင္ရန္ စီစဥ္ထားျခင္းျဖစ္ပါသည္


သူငယ္ခ်င္းမ်ားကိုမွ်ေ၀ေပးပါ :

1 comment:

  1. ေက်းဇူးအထူးတင္ပါတယ္ Brother ႀကီး

    ReplyDelete

ပံုတင္ရန္[im]...[/im]
scrolling effect [ma]....[/ma]
စာလံုးအရြယ္ [si="2"]...[/si]
အေရာင္ [co="red"]...[/co]
အလယ္မွာထား [ce]...[/ce]
scrolling effect ညာဘက္ [ma+]...[/ma+]
ေဘာက္ [box]...[/box]
အမွတ္ [mark]...[/mark] ;
ေနာက္ခံ effect [card="blue"]...[/card]
ပံု fix size [im#]...[/im]
Link ထည့္ရန္ 〈a href="ေဖာ္ျပလိုေသာ Link"〉more..〈/a>

Note: Only a member of this blog may post a comment.

 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2021. ဘူးရေမျက်ရွာ - All Rights Reserved
Template Modify by Creating Website
DESIGN by မောင်အေးလွင်(ဘူးရေမျက်ရွာ)မှ ပြန်လည်ပြင်ထားသည်