know yourselves. information, computer, 7 wonders, various.

Showing posts with label JQuery. Show all posts
Showing posts with label JQuery. Show all posts

Thursday, March 5, 2020

JQuery_Part 4_Animated-Gif ইমেল সংযোজন






Animated-Gif ইমেল সংযোজন
খুব সহজেই সাইটে animated-Gif ইমেজ সংযোজন করা সম্ভব।
এখন আমরা আমাদের footer.php ফাইলে Java Script কোড সংযোজন করে  একটি এনিমেন্টেড ইমেজকে সাইটে সংযোজন করবো।
  1. footer. php ফাইলটি খুলুন। এবং যেখানে </body> ট্যাগ শেষ হচ্ছে ঠিক তার উপরের লাইনে কার্সর রাখুন।

  1. এখন JS & JQ Project ফোল্ডার থেকে animated – Gif.tex ফাইলটি খুলে সব টুকু কোড কপি / পেষ্ট করুন বা নিচের মত সরাসরি কোডিং লিখে দিন।
  2. তখন image দেওয়া থেকে batterfly.gif batterfly.Gif  ইমেজ ২ টি mysite ফোল্ডারের root এ কপি করে দিন।


<script language="JavaScript1.2">
var Ymax=8;                                //MAX # OF PIXEL STEPS IN THE "X" DIRECTION
var Xmax=8;                                //MAX # OF PIXEL STEPS IN THE "Y" DIRECTION
var Tmax=10000;                        //MAX # OF MILLISECONDS BETWEEN PARAMETER CHANGES


//FLOATING IMAGE URLS FOR EACH IMAGE. ADD OR DELETE ENTRIES. KEEP ELEMENT NUMERICAL ORDER STARTING WITH "0" !!

var floatimages=new Array();
floatimages[0]='butterfly.gif';
floatimages[1]='butterfly.gif';
floatimages[2]='butterfly2.gif';
floatimages[3]='butterfly2.gif';
//*********DO NOT EDIT BELOW***********
var NS4 = (navigator.appName.indexOf("Netscape")>=0 && parseFloat(navigator.appVersion) >= 4 && parseFloat(navigator.appVersion) < 5)? true : false;
var IE4 = (document.all)? true : false;
var NS6 = (parseFloat(navigator.appVersion) >= 5 && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var wind_w, wind_h, t='', IDs=new Array();
for(i=0; i<floatimages.length; i++){
t+=(NS4)?'<layer name="pic'+i+'" visibility="hide" width="10" height="10"><a href="javascript:hidebutterfly()">' : '<div id="pic'+i+'" style="position:absolute; visibility:hidden;width:10px; height:10px"><a href="javascript:hidebutterfly()">';
t+='<img src="'+floatimages[i]+'" name="p'+i+'" border="0">';
t+=(NS4)? '</a></layer>':'</a></div>';
}
document.write(t);

function moveimage(num){
if(getidleft(num)+IDs[num].W+IDs[num].Xstep >= wind_w+getscrollx())IDs[num].Xdir=false;
if(getidleft(num)-IDs[num].Xstep<=getscrollx())IDs[num].Xdir=true;
if(getidtop(num)+IDs[num].H+IDs[num].Ystep >= wind_h+getscrolly())IDs[num].Ydir=false;
if(getidtop(num)-IDs[num].Ystep<=getscrolly())IDs[num].Ydir=true;
moveidby(num, (IDs[num].Xdir)? IDs[num].Xstep :  -IDs[num].Xstep , (IDs[num].Ydir)?  IDs[num].Ystep:  -IDs[num].Ystep);
}

function getnewprops(num){
IDs[num].Ydir=Math.floor(Math.random()*2)>0;
IDs[num].Xdir=Math.floor(Math.random()*2)>0;
IDs[num].Ystep=Math.ceil(Math.random()*Ymax);
IDs[num].Xstep=Math.ceil(Math.random()*Xmax)
setTimeout('getnewprops('+num+')', Math.floor(Math.random()*Tmax));
}

function getscrollx(){
if(NS4 || NS6)return window.pageXOffset;
if(IE4)return document.body.scrollLeft;
}

function getscrolly(){
if(NS4 || NS6)return window.pageYOffset;
if(IE4)return document.body.scrollTop;
}

function getid(name){
if(NS4)return document.layers[name];
if(IE4)return document.all[name];
if(NS6)return document.getElementById(name);
}

function moveidto(num,x,y){
if(NS4)IDs[num].moveTo(x,y);
if(IE4 || NS6){
IDs[num].style.left=x+'px';
IDs[num].style.top=y+'px';
}}

function getidleft(num){
if(NS4)return IDs[num].left;
if(IE4 || NS6)return parseInt(IDs[num].style.left);
}

function getidtop(num){
if(NS4)return IDs[num].top;
if(IE4 || NS6)return parseInt(IDs[num].style.top);
}

function moveidby(num,dx,dy){
if(NS4)IDs[num].moveBy(dx, dy);
if(IE4 || NS6){
IDs[num].style.left=(getidleft(num)+dx)+'px';
IDs[num].style.top=(getidtop(num)+dy)+'px';
}}

function getwindowwidth(){
if(NS4 || NS6)return window.innerWidth;
if(IE4)return document.body.clientWidth;
}

function getwindowheight(){
if(NS4 || NS6)return window.innerHeight;
if(IE4)return document.body.clientHeight;
}

function init(){
wind_w=getwindowwidth();
wind_h=getwindowheight();
for(i=0; i<floatimages.length; i++){
IDs[i]=getid('pic'+i);
if(NS4){
IDs[i].W=IDs[i].document.images["p"+i].width;
IDs[i].H=IDs[i].document.images["p"+i].height;
}
if(NS6 || IE4){
IDs[i].W=document.images["p"+i].width;
IDs[i].H=document.images["p"+i].height;
}
getnewprops(i);
moveidto(i , Math.floor(Math.random()*(wind_w-IDs[i].W)), Math.floor(Math.random()*(wind_h-IDs[i].H)));
if(NS4)IDs[i].visibility = "show";
if(IE4 || NS6)IDs[i].style.visibility = "visible";
startfly=setInterval('moveimage('+i+')',Math.floor(Math.random()*100)+100);
}}

function hidebutterfly(){
for(i=0; i<floatimages.length; i++){
if (IE4)
eval("document.all.pic"+i+".style.visibility='hidden'")
else if (NS6)
document.getElementById("pic"+i).style.visibility='hidden'
else if (NS4)
eval("document.pic"+i+".visibility='hide'")
clearInterval(startfly)
}
}

if (NS4||NS6||IE4){
window.onload=init;
window.onresize=function(){ wind_w=getwindowwidth(); wind_h=getwindowheight(); }
}

</script>
ব্যাস ব্রাউজারে খুলুন নিচের মত ইভেন্ট পাওয়া যাবে। অন্য ইমেজ দিয়েও কাজটি করা যেত।

বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।


Book Name: Mastering Microsoft  Word
Writer: Bappi Ashraf
Published By: Gyankosh Prokashani
Amount of Pages: 464
First Publish: October-2004
Last Edition: We've February-2015 edition. Future edition may be existed!
Book Price: BDT 350 (30% Discount)
 The writer of this book has told that he has written this book with the concept of "teach yourself". On the other hand, Web Design is a thing which is interesting to learn. He has also told that the book is full of fan and enjoyment so that a person can learn Web Design by himself by playing with the example projects of this book.  Book's CD Link below... 

 cd

RELATED POST LINKS BELOW ********************************************
part1_ওয়েব পেজ Counter যোগ করা ,ইমেজ Expand Effect সংযোগ করা ও Element Fader তৈরী  করা  
part2_ইমেজ Expand Effect সংযোগ করা  
part3_Element Fader তৈরী  করা
part4_Animated-Gif ইমেল সংযোজন
part5_Slide Show সংযোজন

JQuery_Part 5_Slide Show সংযোজন


Slide Show সংযোজন
এখন আমাদের website এর Index ফাইলে বা home পেজে About Nova Cmputer হেডিং এর নিচে 360 width 240 height এর একটি Slide Show সংযোজন করবো। 


এজন্য CSS ফাইলে  (my Style-final.css ফাইল CSS ফোল্ডারে বক্ষিত) সামান্য পরিবর্তন করে নিন। Coutent-Left এর Width = 130 px, Content-mid এর Wedth=360 px Content-right এর width = 270px করা হয়েছে। চলুন Slide Show তৈরী করা যাক।
  1. My-Index final.php খুলুন। এবং প্রথম php ট্যাগ দেখানো header.php ফাইলকে include করা হয়েছে সেই ট্যাগের নিচে line-4 এ কার্সর স্থাপন করুন।
  1. .এখন JQvery ফোল্ডারে অবস্থিত JSJQ Project ফোল্ডার থেকে Slide Show-head.text ফাইলটি খুলে সবটুকু কোড কপি/পেস্ট করুন বা নিচের মত কোডিং করুন।
<script type="text/javascript" src="slideshow.js"></script>
<script type="text/javascript">

$(document).ready(function() {       
     slideShow();
});
function slideShow() {
     //Set the opacity of all images to 0
     $('#gallery a').css({opacity: 0.0});
    
     //Get the first image and display it (set it to full opacity)
     $('#gallery a:first').css({opacity: 1.0});
    
     //Set the caption background to semi-transparent
     $('#gallery .caption').css({opacity: 0.5});

     //Resize the width of the caption according to the image width
     $('#gallery .caption').css({width: $('#gallery a').find('img').css('width')});
    
     //Get the caption of the first image from REL attribute and display it
     $('#gallery .content').html($('#gallery a:first').find('img').attr('rel'))
     .animate({opacity: 0.7}, 3000);
    
     //Call the gallery function to run the slideshow, 6000 = change to next image after 6 seconds
     setInterval('gallery()',6000);
}
function gallery() {
    
     //if no IMGs have the show class, grab the first image
     var current = ($('#gallery a.show')?  $('#gallery a.show') : $('#gallery a:first'));
     //Get next image, if it reached the end of the slideshow, rotate it back to the first image
     var next = ((current.next().length) ? ((current.next().hasClass('caption'))? $('#gallery a:first') :current.next()) : $('#gallery a:first'));
     //Get next image caption
     var caption = next.find('img').attr('rel');
     //Set the fade in effect for the next image, show class has higher z-index
     next.css({opacity: 0.0})
     .addClass('show')
     .animate({opacity: 1.0}, 1000);
     //Hide the current image
     current.animate({opacity: 0.0}, 1000)
     .removeClass('show');
     //Set the opacity to 0 and height to 1px
     $('#gallery .caption').animate({opacity: 0.0}, { queue:false, duration:0 }).animate({height: '1px'}, { queue:true, duration:300 });  
    
     //Animate the caption, opacity to 1.0 and heigth to 50px, a slide up effect
     $('#gallery .caption').animate({opacity: 1.0},100 ).animate({height: '50px'},500 );
    
     //Display the content
     $('#gallery .content').html(caption);
}
</script>
<style type="text/css">
.clear {
     clear:both
}
#gallery {
     position:relative;
     height:240px
}
     #gallery a {
          float:left;
          position:absolute;
     }
     #gallery a img {
          border:none;
     }
    
     #gallery a.show {
          z-index:500
     }
     #gallery .caption {
          z-index:600;
          background-color:#000;
          color:#ffffff;
          height:50px;
          width:100%;
          position:absolute;
          bottom:0;
     }

     #gallery .caption .content {
          margin:5px
     }
     #gallery .caption .content h3 {
          margin:0;
          padding:0;
          color:#1DCCEF;
     }
</style>
লক্ষ্য করুন কোডিং এর প্রথম অংশে Java Script সংযোজন করা হয়েছে। এবং দ্বিতীয় অংশে Internal Styleshect সংযোজন করে কিছু Class ID ডিক্লেয়ার করা হয়েছে। তাই class ID এখানে ডিক্লেয়ার না করে CSS ফাইলেও ডিক্লেয়ার করা যেত। এখন কিছু HTML কোড সংযোজন করতে হবে।
  1. এখন < div id =” content-div”> ডিভের নিচে কার্সর স্থাপন করুন। এখানে আলাদা একটি  <div>  এর মধ্যে কোড সছযোজন করতে হবে।


  1. এখন JS&JQ Project ফোল্ডার থেকে Silde Show-body.tex ফাইল খুলে সমসত্ম কোড কপি/পেষ্ট কারুন বা নিচের মত কোডিং লিখুন।লক্ষ্য করুন এখানে Image সাইজ প্রতিটি লিংকে ডিক্লেয়ার করা হয়েছে। এর বদলে CSS ফাইলে আলাদা একটি Class নেওয়া যেত।
<div id="gallery">
     <a href="#" class="show">
          <img src="images/photo1.jpg" alt="Flowing Rock" width="360" height="240" title="" alt="" rel="<h3>Flash and Windows</h3>Learn Adobe Flash and Microsoft Windows."/>
     </a>
     <a href="#">
          <img src="images/photo2.jpg"  width="360" height="240" title="" alt="" rel="<h3>Photoshop-Illustrator</h3>Learn Adobe Photoshop and Adobe Illustrator."/>
     </a>
     <a href="#">
          <img src="images/photo3.jpg" width="360" height="240" title="" alt="" rel="<h3>C++ & Office</h3>Learn Borland C++ and Microsoft Office."/>
     </a>
     <a href="#">
          <img src="images/photo4.jpg" width="360" height="240" title="" alt="" rel="<h3>User Guide</h3>Learn Microsoft Office at a glance using User Guide."/>
     </a>
     <a href="#">
          <img src="images/photo5.jpg" width="360" height="240" title="" alt="" rel="<h3>Photoshop</h3>Learn Adobe Photoshop CS6."/>
     </a>
     <a href="#">
          <img src="images/photo6.jpg" width="360" height="240" title="" alt="" rel="<h3>Premiere</h3>Learn Adobe Premiere and Microsoft Word."/>
     </a>
     <div class="caption"><div class="content"></div></div>
</div>
<div class="clear"></div>

  1. ব্যাস ব্রাউজারে খুলুন নিচের মত ফলাফল পাওয়া যাবে।

বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।



Book Name: Mastering Microsoft  Word
Writer: Bappi Ashraf
Published By: Gyankosh Prokashani
Amount of Pages: 464
First Publish: October-2004
Last Edition: We've February-2015 edition. Future edition may be existed!
Book Price: BDT 350 (30% Discount)
 The writer of this book has told that he has written this book with the concept of "teach yourself". On the other hand, Web Design is a thing which is interesting to learn. He has also told that the book is full of fan and enjoyment so that a person can learn Web Design by himself by playing with the example projects of this book.  Book's CD Link below... 

 cd

RELATED POST LINKS BELOW ********************************************

part1_ওয়েব পেজ Counter যোগ করা ,ইমেজ Expand Effect সংযোগ করা ও Element Fader তৈরী  করা  
part2_ইমেজ Expand Effect সংযোগ করা  
part3_Element Fader তৈরী  করা
part4_Animated-Gif ইমেল সংযোজন
part5_Slide Show সংযোজন