السلام عليكم و اهلاً بكم في مدونة إحترف اليوم سوف اقدم لكم موضوع جميل حول
"كيفية إضافة نشرة مصورة عن مدونتك بتقنية jquery"
بسم الله نبدأ بأول خطوة وهي تتبع المسار التالي
1 تصميم - 2 تحرير html
3 وضع علامة على المربع لوسيع القالب
ثم إحفض نسخة إحطياتية تجنباً لأي خطأ
ثم إضغط من لوحة المفاتيح على الأزرار Ctrl + F
وكتب في ملربعها كلمة
</head>
كما في الصورة
بعد إجادها نضيف فوقها مباشرة هذا الكود
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
//Execute the slideShow, set 6 seconds for each images
slideShow(3000);
});
function slideShow(speed) {
//append a LI item to the UL list for displaying caption
$('ul.slideshow').append('<li id="slideshow-caption" class="caption"><div class="slideshow-caption-container"><h3></h3><p></p></div></li>');
//Set the opacity of all images to 0
$('ul.slideshow li').css({opacity: 0.0});
//Get the first image and display it (set it to full opacity)
$('ul.slideshow li:first').css({opacity: 1.0});
//Get the caption of the first image from REL attribute and display it
$('#slideshow-caption h3').html($('ul.slideshow a:first').find('img').attr('title'));
$('#slideshow-caption p').html($('ul.slideshow a:first').find('img').attr('alt'));
//Display the caption
$('#slideshow-caption').css({opacity: 0.7, bottom:0});
//Call the gallery function to run the slideshow
var timer = setInterval('gallery()',speed);
//pause the slideshow on mouse over
$('ul.slideshow').hover(
function () {
clearInterval(timer);
},
function () {
timer = setInterval('gallery()',speed);
}
);
}
function gallery() {
//if no IMGs have the show class, grab the first image
var current = ($('ul.slideshow li.show')? $('ul.slideshow li.show') : $('#ul.slideshow li: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().attr('id') == 'slideshow-caption')? $('ul.slideshow li:first') :current.next()) : $('ul.slideshow li:first'));
//Get next image caption
var title = next.find('img').attr('title');
var desc = next.find('img').attr('alt');
//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 caption first, and then set and display the caption
$('#slideshow-caption').animate({bottom:-70}, 300, function () {
//Display the content
$('#slideshow-caption h3').html(title);
$('#slideshow-caption p').html(desc);
$('#slideshow-caption').animate({bottom:0}, 500);
});
//Hide the current image
current.animate({opacity: 0.0}, 1000).removeClass('show');
}
//]]>
</script>
<style type='text/css'>
ul.slideshow {
list-style:none;
width:600px;
height:200px;
overflow:hidden;
position:relative;
margin:0;
padding:0;
}
ul.slideshow li {
position:absolute;
right:0;
left:0;
}
ul.slideshow li.show {
z-index:500;
}
ul img {
border:none;
}
#slideshow-caption {
width:600px;
height:65px;
position:absolute;
bottom:0;
right:0;
color:#fff;
background:#055373;
z-index:500;
}
#slideshow-caption .slideshow-caption-container {
padding:5px 10px;
z-index:1000;
}
#slideshow-caption h3 {
margin:0;
padding:0;
font-size:14px;
font-weight:bold;
font-align: center;
font-family:tahoma;
}
#slideshow-caption p {
font-size:11px;
margin:5px 0 0 0;
padding:0;
font-family:tahoma;
}
</style>
|
بعد ذالك إحفض القالب
الآن توجه إلى المسار التالي
1تصميم - 2 عناصر الصفحة - 3 إضافة أدات من نوع html/java script
ثم انسخ هذا الكود في السكريبت الجديد
<ul class='slideshow'>
<li><a href='رابط الموضوع المختارة'><img alt='الوصف الخاص بالرابط' height='200' src='رابط الصورة' title='عنوان الموضوع' width='600'/></a></li>
<li><a href='رابط الموضوع المختارة'><img alt='الوصف الخاص بالرابط' height='200' src='رابط الصورة' title='عنوان الموضوع' width='600'/></a></li>
<li><a href='رابط الموضوع المختارة'><img alt=' الوصف الخاص بالرابط' height='200' src='رابط الصورة' title='عنوان الموضوع' width='600'/></a></li>
<li><a href='رابط الموضوع المختارة'><img alt=' الوصف الخاص بالرابط ' height='200' src='رابط الصورة' title='عنوان الموضوع' width='600'/></a></li>
<li><a href='رابط الموضوع المختارة'><img alt='الوصف الخاص بالرابط' height='200' src='رابط الصورة' title='عنوان الموضوع' width='600'/></a></li>
</ul> |
ثم ألصق الكود و حفض الاداة
الآن بعد حفض الأداة ضعها أعلى الرسائل في المكان المحدد في الصورة
ملاحضات هامة
1 ثم تأكد من ان القياسات مناسبة لمدونتك ويمكنك تعديلها بتغيير قيمة 600
2 بعد تحديد الصورة التي تريد ان تظيف رابطها تأكد من مقاساتها لتناسب المدونة
3 في حالة أن الصور لا تريد أن تضهر فيمكنك رفعها على موقع فيلكر
إحفض القالب ومبروك عليك
يمكنكم رؤية الكود الخاص بمدونتي
<ul class='slideshow'>
<li><a href='http://blog-ihtarif.blogspot.com/2011/08/blog-post_9315.html'><img alt='يمكنك الآن نشر على الموقعين دون عتاب في دالك' height='200' src='http://www.seomanager.fr/wp-content/uploads/2008/12/blipfm-twitter-facebook.gif' title='كيفية نشر المواضيع مباشرة على الفيسبوك و تويتر
' width='600'/></a></li>
<li><a href='http://blog-ihtarif.blogspot.com/2011/08/blog-post_17.html'><img alt='كن السباق لكتشاف هذه التقنية' height='200' src='http://farm7.static.flickr.com/6065/6053996047_668d38b906_m.jpg' title='حصرياً و لأول مرة "طريقة جعل لكل صفحة خلفية خاصة' width='470'/></a>
<li><a href='http://blog-ihtarif.blogspot.com/2011/08/blogger_17.html'><img alt='طريقة ناجحة ومجربة على المدونة' height='200' src='http://farm7.static.flickr.com/6089/6054516592_dd26089ff1.jpg' title='الطرقة الصحيحة لإخفاء شريط تتبع blogger' width='480'/></a>
</li></li></ul |
هنا أنتهي من هذا الموضوع و لأي إستفسار أنا موجود
http://wwe4all-arabic.blogspot.com/
ردحذفإضافة جميلة استفدت منها وعدلت عليها قليلاً بما يناسبني شكرا لك
ردحذفتفضل بزيارة مدونتي
http://alfares-decoration.blogspot.com/