اكواد اضافة ازرار المتابعة على الشبكات الاجتماعية
جميع المشاركات الاجتماعية الموجودين في الصورة العليا من الفيسبوك، تويتر، جوجل بلس، التغذية، اليوتيوب. متاحين في الكود التالي
اذهب الى تخطيط- تم اضافة اداة- ثم اختر HTML/javascript
ثم ضع الكود التالي
<style>
p#hb_socialicons img {
-moz-transition: all 0.0s ease-in-out;
-webkit-transition: all 0.0s ease-in-out;
-o-transition: all 0.0s ease-in-out;
-ms-transition: all 0.0s ease-in-out;
transition: all 0.0s ease-in-out;
width: 50px;
}
p#hb_socialicons img:hover {
-moz-transform: rotate(360deg);
-moz-opacity: 0.8;
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
</style>
<center>
<p id="hb_socialicons">
<a href="هنا رابط صفحتك على الفيسبوك">
<img border="0" src="https://cdn3.iconfinder.com/data/icons/ultimate-social/150/03_facebook-64.png" /></a>
<a href="حسابك في تويتر">
<img border="0" src="https://cdn3.iconfinder.com/data/icons/ultimate-social/150/09_twitter-512.png" /></a>
<a href="حسابك في google plus">
<img border="0" src="https://cdn3.iconfinder.com/data/icons/ultimate-social/150/34_google_plus-64.png" /></a>
<a href="الفيدبارنر الخاص بك">
<img border="0" src="https://cdn3.iconfinder.com/data/icons/ultimate-social/150/30_blogger-64.png" /></a>
<a href="قناتك على اليوتيوب">
<img border="0" src="https://cdn3.iconfinder.com/data/icons/ultimate-social/150/39_youtube_b-64.png" /></a>
</p>
</center>
ثم قم بتغيير المطلوب في الكود لصفحاتك وقتاتك

