форум vBSupport.ru > vBulletin > Old vB versions (3.0.x & 2.x.x) > vBulletin 3.6.x > Hacks, mods and scripts [3.6.x]
Register Меню vBsupport Изображения Files Manager О рекламе Today's Posts Search
  • Родная гавань
  • Блок РКН снят
  • Premoderation
  • For English speaking users
  • Каталог Фрилансеров
  • If you want to buy some product or script
  • Администраторам
VBsupport перешел с домена .ORG на родной .RU Ура! Пожалуйста, обновите свои закладки - VBsupport.ru
Блок РКН снят, форум доступен на всей территории России, включая новые терртории, без VPN
На форуме введена премодерация ВСЕХ новых пользователей

Почта с временных сервисов, типа mailinator.com, gawab.com и/или прочих, которые предоставляют временный почтовый ящик без регистрации и/или почтовый ящик для рассылки спама, отслеживается и блокируется, а так же заносится в спам-блок форума, аккаунты удаляются
for English speaking users:
You may be surprised with restriction of access to the attachments of the forum. The reason is the recent change in vbsupport.org strategy:

- users with reputation < 10 belong to "simple_users" users' group
- if your reputation > 10 then administrator (kerk, Luvilla) can decide to move you into an "improved" group, but only manually

Main idea is to increase motivation of community members to share their ideas and willingness to support to each other. You may write an article for the subject where you are good enough, you may answer questions, you may share vbulletin.com/org content with vbsupport.org users, receiving "thanks" equal your reputation points. We should not only consume, we should produce something.

- you may:
* increase your reputation (doing something useful for another members of community) and being improved
* purchase temporary access to the improved category:
10 $ for 3 months. - this group can download attachments, reputation/posts do not matter.
20 $ for 3 months. - this group can download attachments, reputation/posts do not matter + adds eliminated + Inbox capacity increased + files manager increased permissions.

Please contact kerk or Luvilla regarding payments.

Important!:
- if your reputation will become less then 0, you will be moved into "simple_users" users' group automatically.*
*for temporary groups (pre-paid for 3 months) reputation/posts do not matter.
Уважаемые пользователи!

На форуме открыт новый раздел "Каталог фрилансеров"

и отдельный раздел для платных заказов "Куплю/Закажу"

Если вы хотите приобрести какой то скрипт/продукт/хак из каталогов перечисленных ниже:
Каталог модулей/хаков
Ещё раз обращаем Ваше внимание: всё, что Вы скачиваете и устанавливаете на свой форум, Вы устанавливаете исключительно на свой страх и риск.
Сообщество vBSupport'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
 
 
 
 
Diablos
Эксперт
 
Diablos's Avatar
Default Members Custom Cursors
2

Привожу описание как в орегинале. Модификация занятная очень, каждый пользователь может выбрать свой личный курсор на форуме.

Lets your members have a list of different cursor images they can choose from in their usercp>>options..

Needs: 2 new profile fields and to upload the cursor images,also a small edit to the header template.

Instructions for profile fields.

Go to AdminCP => Profile Fields => Add new Profile field => Single-Selection Radio Buttons

Title > Custom Cursor

Description > Turn on the custom cursor?(May not work with firefox)
Options:
No
Yes

Set Default: Yes
Editable By User: Yes

Display Page: Edit Options:other
Write down your field# . i.e field1
..................................................
Instructions for 2nd profile field:
Go to AdminCP => Profile Fields => Add new Profile field => Single-Selection Menu
Title > Choose a cursor

Description > Which cursor would you like?
Options:
sharpblue
sword
hearts
yellow
green
red

Set Default: Yes,but no first blank option
Editable By User: Yes

Display Page: Edit Options:other
Write down your field# . i.e field2
.................................................. .........
Upload /cursors folder to your /images folder...
.................................................. ............

Then edit header template:
Go to AdminCP => Styles and Templates => Template Manager => Choose style to edit, and choose edit templates in drop down menu

In Template header add the following code at very top.

Code:
<if condition=" $bbuserinfo[field#]== Yes">
<style>
<!--
BODY{
CURSOR: url(http://www.forum.com/images/cursors/$bbuserinfo[field#].cur);
}
-->
</style>
</if>
Change forum.com to your own forum url.
Take the first profile field number and replace the first # in the code with it.
Do the same with the second field..
Should look like:

Code:
<if condition=" $bbuserinfo[field1]== Yes">
<style>
<!--
BODY{
CURSOR: url(http://www.myforumurl.com/images/cursors/$bbuserinfo[field2].cur);
}
-->
</style>
</if>
.................................................. .....................
To add more cursors upload them into the cursor folder, and add them to the list in the second profile field you set up.The name must be the same as the image name..Ie sparkly.cur would be sparkly in the list.
Cursors always have the file name .cur as far as i know..
Works in IE 6 and above and some versions of firefox .Others not tested.
Attached Thumbnails
sword.gif  
Attached Files
File Type: zip cursors.zip (4.2 KB, 37 views)
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 
 
Sobsoft
Простоузер
Default
0

А можно с помощью мода сделать так, чтобы он заменял обычный курсор мыши, и юзер не мог выбирать другой курсор?
 
 
and277
Простоузер
Default
2

SpecnazGRU, без проблем!

идешь в свой стиль... дополнит. CSS и вписываешь :

a {cursor: url('/forum/images/cursors/sword.cur') }
a:hover {cursor: url('/forum/images/cursors/sword.cur') }

Привожу для примера!

Внимание ты не должен ставит модификацую в шапке этого сайта. Только закинь курсоры в папочки.

Не работает в Опере и мозилле! Только Ие6 и Ие7

Удачи!
 
 
Sobsoft
Простоузер
Default
0

жаль что в опере не работает
 
 
Cactus
Специалист
 
Cactus's Avatar
Default
1

Quote:
Originally Posted by SpecnazGRU View Post
жаль что в опере не работает
гдето в гуголе был ответ =)) делал когдато што курсор работал и в опере =)
 
 
Sobsoft
Простоузер
Default
0

Вот эта джагаджага работает в опере http://www.webtoolkit.info/javascrip...om-cursor.html
 
 
Cactus
Специалист
 
Cactus's Avatar
Default
0

SpecnazGRU, это немножко не то =))) оно блин не позволяет использовать формат курсоров...
 
 
Sobsoft
Простоузер
Default
0

в принципе мона и поколдовать если что)) а если не получица - да кому они нафих нужны эти курсоры)))) будем тыкать гифом
 
 
Axvel
Простоузер
Default
0

а я сегодня сделал у себя на форуме. при наведении на ссылку меняется на анимированный курсор
Оффтоп
и гифы и курсор пришлось лепить, в эксплорере все видно, а под оперой только гиф
 


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




All times are GMT +4. The time now is 10:11 PM.


Powered by vBulletin® Version 3.5.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.