السلام عليكم
مرحيا بكم في هذه التدوين الحصرية على مدونة المنير ، التي سنتطرق فيها الى طريقة اضافة فيديو في نافدة منبثة على مدونات البلوجر . الطريقة احترافية إدا تمكنكم من اضافة فيديوهات ، أو مقاطع موسيقية ، أو مقالات أو إضافات ،... في نافذة تنبثق إثر الضغط على الرابط فيتم عرض المحتوى ذاخل نافدة مع خاصية الإغلاق .
هذه الإضافة احترافية و لها العديد من الإستعمالات ، اما فيما يخص اضافة الفيديو في الغضافة فما عليك سوى اضافة الكود المحصل عليه من اليوتيوب مباشرة في الكمان المخصص له .
طريقة اضافة الاداة الى البلوجر
- نتوجه الى المدونة ثم قالب
- تحرير HTML
- ثم نقوم باللصق الكود التالي فوق </head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://chtartar00.googlecode.com/svn/trunk/fdfdgdfg.js"></script>
<style>
/*! FlyThat - v0.1.0 - 2014-08-03
* http://hukmat.blogspot.com
* Copyright (c) 2014 Lucas Ferreira; Licensed MIT */
.flythat {
display: none;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
zoom: 1;
}
.flythat-border-radius {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.flythat img {
border: none;
}
.flythat .flythat-close {
position: absolute;
display: inline-block;
top: 4px;
right: 4px;
padding: 4px;
overflow: hidden;
font: 24px Arial, Helvetica, Verdana, sans-serif;
font-weight: bold;
line-height: 14px;
text-decoration: none;
text-align: center;
color: #666;
text-shadow: 1px 1px 1px #DDD;
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
-webkit-font-smoothing: antialiased;
cursor: pointer;
z-index: 9999;
}
.flythat .flythat-close:hover {
color: #900;
background: rgba(255, 255, 255, 0.2);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
#content .btn {
font-family: Helvetica, Arial, Tahoma, Verdana, sans-serif;
font-weight: 600;
font-size: 21px;
letter-spacing: -1px;
line-height: 21px;
background: #CCC;
color: #05818B;
padding: 8px 10px;
border: 0;
border-radius: 8px;
-moz-border-radius: 8px;
-ms-border-radius: 8px;
-o-border-radius: 8px;
-webkit-font-smoothing: antialiased;
-webkit-box-shadow: inset 0 -4px 0 rgba(0,0,0,0.08);
-moz-box-shadow: inset 0 -4px 0 rgba(0,0,0,0.08);
box-shadow: inset 0 -4px 0 rgba(0,0,0,0.08);
cursor: pointer;
}
#content .btn:hover {
text-decoration: none;
-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08);
-moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08);
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08);
}
#content .btn-primary {
color: #FFF;
background: #05818B;
}
#content .btn-primary:hover {
background: #096b72;
}
#content .btn-purple {
color: #fff;
background: #4f1f77;
}
#content .btn-purple:hover {
background: #2B014C;
}
#content .list-samples,
#content .list-samples li {
list-style-type: disc;
list-style-position: inside;
padding-left: 7px;
line-height: 21px;
}
.text-fly {
background: #FFF;
padding: 24px;
text-align: left;
}
.text-fly p {
margin-bottom: 9px;
text-align: justify;
}
</style>
<script>
$("#modal-text").flythat({
OPTIONS HERE
});
</script>
- عند اضافة الاداة نضيف الكود التالي مع مراعاة تغيير المطلوب
<a href="#" data-flythat="#modal-text">اضغط هنا </a>
<div class="flythat" data-autoOpen="false" id="modal-text"> <a href="#close" class="close flythat-close">×</a>
<div class="text-fly">
ضع هنا كود الفيديو او الإضافة التي تريدها
</div>
</div>