Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Animation Avatar Details »»
Animation Avatar
Version: 1.00, by AdmiralFrost AdmiralFrost is offline
Developer Last Online: Oct 2020 Show Printable Version Email this Page

Category: Mini Mods - Version: 4.2.x Rating:
Released: 12-07-2013 Last Update: Never Installs: 11
Template Edits
Code Changes  
No support by the author.

Hello All,
Hope this mod is not present already.
At once I will tell that effects are realized by means of CSS3 therefore will work only in modern supporting CSS3 browsers.
Lets Start!
ACP> Styles & Templates> [Your Style]> Edit Templates> Postbit.css
Add:
Code:
.imgholder{
	position:relative;
	width:120px;
	height:120px;
	border-radius:100px;
	float:left;
	margin:40px 30px;
}
/* thumbnails style */
.imgholder img{
	position:absolute;
	left:0;
	top:0;
	width:120px;
	height:120px;
	z-index:5;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	opacity:0.3;
	filter: alpha(opacity = 30);
	box-shadow:0 0 5px #000;
	-moz-box-shadow:0 0 5px #000;
	-webkit-box-shadow:0 0 5px #000;
	
	transform: scale(0.5,0.5);
	-ms-transform: scale(0.5,0.5);
	-moz-transform: scale(0.5,0.5);
	-webkit-transform: scale(0.5,0.5);
	
	transition: 
		opacity 1s,
		transform 1s ease-in-out 0.3s;
	-moz-transition: 
		opacity 1s,
		-moz-transform 1s ease-in-out 0.3s;
	-webkit-transition: 
		opacity 1s,
		-webkit-transform 1s ease-in-out 0.3s;
}
.imgholder:hover img{
	opacity:1;
	filter: alpha(opacity = 100);
	transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-webkit-transform: scale(1,1);
}

.imgholder figcaption{
	position:absolute;
	left:-5px;
	top:40%;
	width:130px;
	color:#004E87;
	font-weight:bold;
	text-shadow:-1px -1px 0 #fff;
	z-index:4;
	
	transition: 
		top 0.5s ease-out;
	-moz-transition: 
		top 0.5s ease-out;
	-webkit-transition: 
		top 0.5s ease-out;
}
.imgholder:hover figcaption{
	top:120%;
}
/* decorations style */
.imgholder .circle{
	position:absolute;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
}
.imgholder .outer1{
	top:-8px;
	left:-8px;
	width:120px;
	height:120px;
	z-index:2;
	
	border:8px solid;
	border-color:#DEEBFC;
	box-shadow:0 0 3px #AFD3FF;
	-moz-ox-shadow:0 0 3px #AFD3FF;
	-webkit-box-shadow:0 0 3px #AFD3FF;
	
	background: #ffffff;
	background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #e2efff 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(100%,#e2efff));
	background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#e2efff 100%);
	background: -o-radial-gradient(center, ellipse cover, #ffffff 0%,#e2efff 100%);
	background: -ms-radial-gradient(center, ellipse cover, #ffffff 0%,#e2efff 100%);
	background: radial-gradient(center, ellipse cover, #ffffff 0%,#e2efff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e2efff',GradientType=1 );
	
	transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-moz-transform:rotate(90deg); 
	-webkit-transform:rotate(90deg);
	
	transition: 
		transform 1.8s ease-in-out,
		box-shadow 1s ease-out,
		border-color 1.5s;
	-moz-transition: 
		-moz-transform 1.8s ease-in-out,
		-moz-box-shadow 1s ease-out,
		border-color 1.5s;
	-webkit-transition: 
		-webkit-transform 1.8s ease-in-out,
		-webkit-box-shadow 1s ease-out,
		border-color 1.5s;
}
.imgholder:hover .outer1{
	border-color:#0088EA #7FC9FF #0088EA #7FC9FF;
	box-shadow:0 0 10px #0285E2;
	-moz-box-shadow:0 0 10px #0285E2;
	-webkit-box-shadow:0 0 10px #0285E2;
	transform:rotate(-10deg);
	-ms-transform:rotate(-10deg);
	-moz-transform:rotate(-10deg); 
	-webkit-transform:rotate(-10deg);
}
.imgholder .outer2{
	top:-18px;
	left:-18px;
	width:136px;
	height:136px;
	z-index:1;
	
	border:10px solid;
	border-color: #D6E5FC #9BC8FF #D6E5FC #9BC8FF;
	box-shadow:0 0 20px #8EB9FF;
	-moz-box-shadow:0 0 20px #8EB9FF;
	-webkit-box-shadow:0 0 20px #8EB9FF;
	opacity:0;
	filter: alpha(opacity = 0);
	
	transform: scale(1.3,1.3) rotate(180deg);
	-ms-transform: scale(1.3,1.3) rotate(180deg);
	-moz-transform: scale(1.3,1.3) rotate(180deg);
	-webkit-transform: scale(1.3,1.3) rotate(180deg);
		
	transition: 
		opacity 0.5s,
		transform 0.7s ease-out;
	-moz-transition: 
		opacity 0.5s,
		-moz-transform 0.7s ease-out;
	-webkit-transition: 
		opacity 0.5s,
		-webkit-transform 0.7s ease-out;
}
.imgholder:hover .outer2{
	opacity:0.9;
	filter: alpha(opacity = 90);
	transform: scale(1,1) rotate(-10deg);
	-ms-transform: scale(1,1) rotate(-10deg);
	-moz-transform: scale(1,1) rotate(-10deg);
	-webkit-transform: scale(1,1) rotate(-10deg);
}
Postbit_legacy
find code:
Code:
<a class="postuseravatar" href="{vb:link member, {vb:raw post}}" title="{vb:rawphrase {vb:raw post['onlinestatusphrase']}, {vb:raw post.username}}">
				<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" title="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
			</a>
			</vb:if>
and replace with:
Code:
<div align="center" class="imgholder">
		<div class="outer1 circle"/></div>
		<div class="outer2 circle"/></div>
		<figure>
<div class="postuseravatar1" href="{vb:link member, {vb:raw post}}" title="{vb:rawphrase {vb:raw post['onlinestatusphrase']}, {vb:raw post.username}}">
<center>
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" title="{vb:rawphrase xs_avatar, {vb:raw post.username}}"/>
</center>
</div>
<figcaption class="caption">
            <span class="username">
             <div class="username_container">
             {vb:raw post.musername}
            </span>
	</figcaption>		
		</figure>
	</div>
Enjoy!

Demo: stopmalware.kz

Screenshots

File Type: gif 36,6.gif.gif (975.6 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
CarpCharacin

Comments
  #2  
Old 12-13-2013, 02:47 PM
baytalha baytalha is offline
 
Join Date: Aug 2012
Location: Konya
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks is a very good
Reply With Quote
  #3  
Old 01-05-2014, 04:54 PM
killah360z killah360z is offline
 
Join Date: Jul 2013
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the ones without a avatar
- posts are unreadable.
Reply With Quote
  #4  
Old 01-06-2014, 02:24 PM
AdmiralFrost AdmiralFrost is offline
 
Join Date: Dec 2012
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by killah360z View Post
the ones without a avatar
- posts are unreadable.
it is possible to use this plugin: https://vborg.vbsupport.ru/showthread.php?t=227947
Reply With Quote
  #5  
Old 01-07-2014, 12:36 AM
Asmod Asmod is offline
 
Join Date: Oct 2011
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is messing up my profile pages, any fix ? Till then il revert this...
Reply With Quote
  #6  
Old 01-07-2014, 01:09 AM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Asmod View Post
Is messing up my profile pages, any fix? Till then I will revert this...
Make sure your forum version is 4.1.x and not 4.2
Reply With Quote
  #7  
Old 01-07-2014, 11:54 AM
Asmod Asmod is offline
 
Join Date: Oct 2011
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi again,

So is not working for 4.2 ? I really liked it...
Reply With Quote
  #8  
Old 01-07-2014, 12:36 PM
ckgb ckgb is offline
 
Join Date: Oct 2007
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Aren't we missing

Code:
</vb:if>
At the end of the replacement?

How did you get it to work in IE 11? Mine works great in FF, Chrome, but IE does not allow for rotation.
Reply With Quote
  #9  
Old 01-07-2014, 07:12 PM
AdmiralFrost AdmiralFrost is offline
 
Join Date: Dec 2012
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Asmod, perfectly works on 4.2.2

ckgb, I checked in IE 11 - everything is normal
Reply With Quote
  #10  
Old 01-07-2014, 07:27 PM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AdmiralFrost View Post
Asmod, perfectly works on 4.2.2

ckgb, I checked in IE 11 - everything is normal
Then you need to change the info above as it says 4.1.x
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:14 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05759 seconds
  • Memory Usage 2,326KB
  • Queries Executed 24 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (1)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (1)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete