Hoşgeldin, Ziyaretçi: Üye Ol

  • Konuyu Oyla:
    • Toplam: 0 Oy - Ortalama: 0
    • 1
    • 2
    • 3
    • 4
    • 5
    TR-Coder Genel Şef Başvurusu
    #1
    Kod:

    Kod:
    Ad Soyad : Doğan Aykaç
    Şehir : Edirne
    Çalıştığınız Siteler : Forumfun,Destek[Adaylık],Videoyun,oynnna,support
    Tasarımlarınız (Grafiker başvurusu yapacaklar için) :
    Neden Destekpi? : DestekPi XR'S'nin sitesi ve yani Oktay abinin oktay abi site yaparsa yürütmeyide bilir bu yüzden

    Ek Olaraktan  Kodlarım : http://i.hizliresim.com/VA0XzV.gif [Yapımda] http://i.hizliresim.com/D8LQYz.gif (Bitti)

    JQuery Market Galery uygulaması

    http://i.hizliresim.com/YjDW4Z.gif

    http://i.hizliresim.com/l0dy0r.gif

    Kayan Resimler Kodu (Bitti)
    Kodlu Olanlar : 

    Kayan Resimler Kodu : 

    Kod:
    <marquee align="middle" scrollamount="4" height="100" width="94%" direction="up"scrolldelay="2"><img src="http://i.hizliresim.com/7V78YW.png">sitename.10tr.net<img src="http://i.hizliresim.com/7V78YW.png">sitename.10tr.net<img src="http://i.hizliresim.com/7V78YW.png">sitename.10tr.net<img src="http://i.hizliresim.com/7V78YW.png">sitename.10tr.net</marquee<TrgraphicKodsonu
    Ve Galeri Market Çöplük Kodu :

    Kod:
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title>jQuery UI Droppable - Foto Düzenleyici-Silici</title>
    <link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
    <script src="//code.jquery.com/jquery-1.10.2.js"></script>
    <script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
    <link rel="stylesheet" href="/resources/demos/style.css">
    <style>
    #gallery { float: left; width: 65%; min-height: 12em; }
    .gallery.custom-state-active { background: #eee; }
    .gallery li { float: left; width: 96px; padding: 0.4em; margin: 0 0.4em 0.4em 0; text-align: center; }
    .gallery li h5 { margin: 0 0 0.4em; cursor: move; }
    .gallery li a { float: right; }
    .gallery li a.ui-icon-zoomin { float: left; }
    .gallery li img { width: 100%; cursor: move; }
    #trash { float: right; width: 32%; min-height: 18em; padding: 1%; }
    #trash h4 { line-height: 16px; margin: 0 0 0.4em; }
    #trash h4 .ui-icon { float: left; }
    #trash .gallery h5 { display: none; }
    </style>
    <script>
    $(function() {
    // there's the gallery and the trash
    var $gallery = $( "#gallery" ),
    $trash = $( "#trash" );
    // let the gallery items be draggable
    $( "li", $gallery ).draggable({
    cancel: "a.ui-icon", // clicking an icon won't initiate dragging
    revert: "invalid",DoussalyTr
    containment: "document",
    helper: "clone",
    cursor: "move"
    });
    // let the trash be droppable, accepting the gallery items
    $trash.droppable({
    accept: "#gallery > li",
    activeClass: "ui-state-highlight",
    drop: function( event, ui ) {
    deleteImage( ui.draggable );
    }
    });
    // let the gallery be droppable as well, accepting items from the trash
    $gallery.droppable({
    accept: "#trash li",
    activeClass: "custom-state-active",
    drop: function( event, ui ) {
    recycleImage( ui.draggable );
    }
    });
    // image deletion function
    var recycle_icon = "<a href='link/to/recycle/script/when/we/have/js/off' title='Recycle this image' class='ui-icon ui-icon-refresh'>Recycle image</a>";
    function deleteImage( $item ) {
    $item.fadeOut(function() {
    var $list = $( "ul", $trash ).length ?
    $( "ul", $trash ) :
    $( "<ul class='gallery ui-helper-reset'/>" ).appendTo( $trash );
    $item.find( "a.ui-icon-trash" ).remove();
    $item.append( recycle_icon ).appendTo( $list ).fadeIn(function() {
    $item
    .animate({ width: "48px" })
    .find( "img" )
    .animate({ height: "36px" });
    });
    });
    }
    // image recycle function
    var trash_icon = "<a href='link/to/trash/script/when/we/have/js/off' title='TrCoder' class='ui-icon ui-icon-trash'>Resmi Sil</a>";
    function recycleImage( $item ) {
    $item.fadeOut(function() {
    $item
    .find( "a.ui-icon-refresh" )
    .remove()
    .end()
    .css( "width", "96px")
    .append( trash_icon )
    .find( "img" )
    .css( "height", "72px" )
    .end()
    .appendTo( $gallery )
    .fadeIn();
    });
    }
    // image preview function, demonstrating the ui.dialog used as a modal window
    function viewLargerImage( $link ) {
    var src = $link.attr( "href" ),
    title = $link.siblings( "img" ).attr( "alt" ),
    $modal = $( "img[src$='" + src + "']" );
    if ( $modal.length ) {
    $modal.dialog( "open" );
    } else {
    var img = $( "<img alt='" + title + "' width='452' height='288' style='display: none; padding: 8px;' />" )
    .attr( "src", src ).appendTo( "body" );
    setTimeout(function() {
    img.dialog({
    title: title,
    width: 400,
    modal: true
    });
    }, 1 );
    }
    }
    // resolve the icons behavior with event delegation
    $( "ul.gallery > li" ).click(function( event ) {
    var $item = $( this ),
    $target = $( event.target );
    if ( $target.is( "a.ui-icon-trash" ) ) {
    deleteImage( $item );
    } else if ( $target.is( "a.ui-icon-zoomin" ) ) {
    viewLargerImage( $target );
    } else if ( $target.is( "a.ui-icon-refresh" ) ) {
    recycleImage( $item );
    }
    return false;
    });
    });
    </script>
    </head>
    <body>
    <div class="ui-widget ui-helper-clearfix">
    <ul id="gallery" class="gallery ui-helper-reset ui-helper-clearfix">
    <li class="ui-widget-content ui-corner-tr">
    <h5 class="ui-widget-header">İlk Resim</h5>
    <img src="http://destek.10tr.net/users/destek/avatars/avatar_2658.gif?dateline=1422102058" alt="The peaks of High Tatras" width="100" height="100">
    <a href="http://i.hizliresim.com/k1O3m7.jpg?dateline=1420973244" title="View larger image" class="ui-icon ui-icon-zoomin">Resmi Büyüt</a>
    <a href="http://www.destek.10tr.net" title="Delete this image" class="ui-icon ui-icon-trash">Resmi Sil</a>
    </li>
    <li class="ui-widget-content ui-corner-tr">
    <h5 class="ui-widget-header">Resim 2</h5>
    <img src="http://i.hizliresim.com/PEdDV5.gif?dateline=1414571486" alt="The chalet at the Green mountain lake" width="96" height="72">
    <a href="http://destek.10tr.net/users/destek/avatars/avatar_10233.png?dateline=1422466446" title="View larger image" class="ui-icon ui-icon-zoomin">http://destek.10tr.net/users/destek/avatars/avatar_10233.png?dateline=1422466446</a>
    <a href="http://www.destek.10tr.net" title="Delete this image" class="ui-icon ui-icon-trash">Resmi Sil</a>
    </li>
    <li class="ui-widget-content ui-corner-tr">
    <h5 class="ui-widget-header">TrCODER-T-Shirt</h5>
    <img src="http://destek.10tr.net/users/destek/avatars/avatar_10233.png?dateline=1422466446" alt="" width="96" height="72">
    <a href="http://destek.10tr.net/users/destek/avatars/avatar_10233.png?dateline=1422466446" title="View larger image" class="ui-icon ui-icon-zoomin">Büyütülmüş Görüntü</a>
    <a href="http://www.destek.10tr.net" title="Delete this image" class="ui-icon ui-icon-trash">Resmi Sil</a>
    </li>
    <li class="ui-widget-content ui-corner-tr">
    <h5 class="ui-widget-header">Resim 4</h5>
    <img src="http://destek.10tr.net/users/destek/avatars/avatar_10016.png?dateline=1421617324" alt="On top of Kozi kopka" width="96" height="72">
    <a href="http://destek.10tr.net/users/destek/avatars/avatar_10016.png?dateline=1421617324" title="Resmi Büyüt" class="ui-icon ui-icon-zoomin">Büyütülmüş Görüntü</a>
    <a href="http://www.dgngraphicweb.10tr.net" title="Resmi Sil TrCoder" class="ui-icon ui-icon-trash">Resmi Sil</a>
    </li>
    </ul>
    <div id="trash" class="ui-widget-content ui-state-default">
    <h4 class="ui-widget-header"><span class="ui-icon ui-icon-trash">Çöp Kutusu</span> Çöp Kutusu</h4>
    </div>
    </div>
    </body>
    </html>
    Hiç Bir Materyal Çalınamaz TRCoder'e aittir ve sakın ve sakın
    bu sana ait değil demeyiniz. İyi kullanımlar Doğan Aykaç.
    ACARA  GAMİNG AÇILDI 
    Ara
    Cevapla }}
    #2
    En iyisini adminler bilir mesajın felan yeterli ancak forum daha yeni açıldı biraz yavaşça ilerleme olacağını düşünüyorum önce Bölüm Şefi veya Grafiker olabilirsin..
    Ara
    Cevapla }}
    #3
    Genel Şef olabilmek için öncelikle Grafiker yada Bölüm Şefi rütbesini almış olmanız gerekmekte.


    Ölümüne yaşıyorum, ölüme inat.
    -Hidra
    Ara
    Cevapla }}
    #4
    A ben bilmiyordum pardon ...

    (Dalga Geçmiyorum Gerçekten Bilmiyorum)
    ACARA  GAMİNG AÇILDI 
    Ara
    Cevapla }}
    #5
    ilk önce bölüm şefi veya grafiker olarak başvurun.
    Ara
    Cevapla }}
    #6
    (02-04-2015, 06:52 PM)Hatake Nickli Kullanıcıdan Alıntı:  En iyisini adminler bilir mesajın felan yeterli ancak forum daha yeni açıldı biraz yavaşça ilerleme olacağını düşünüyorum önce Bölüm Şefi veya Grafiker olabilirsin..

    Genel Şef'likte kodlamalar önemli diye biliyordum ama...
    ACARA  GAMİNG AÇILDI 
    Ara
    Cevapla }}
    #7
    (02-04-2015, 06:54 PM)TrCoder Nickli Kullanıcıdan Alıntı:  
    (02-04-2015, 06:52 PM)Hatake Nickli Kullanıcıdan Alıntı:  En iyisini adminler bilir mesajın felan yeterli ancak forum daha yeni açıldı biraz yavaşça ilerleme olacağını düşünüyorum önce Bölüm Şefi veya Grafiker olabilirsin..

    Genel Şef'likte kodlamalar önemli diye biliyordum ama...

    tabiikide önemli her önüne gelen genel şef olamaz, sadece zamana bırakın demek istemiştim başarılar..
    Ara
    Cevapla }}
    #8
    Evet anlıyorum yorumunuz için teşekkür ederim
    ACARA  GAMİNG AÇILDI 
    Ara
    Cevapla }}
    #9
    Şuanlık Bölümşefi kadromuz doldu. Bu gece şeflerden veya grafikerlerden 2 Genel şef ataması yapacağım ondan sonra sizde kadromuza dahil olabilirsiniz.
    Ara
    Cevapla }}
    #10
    G.Şef olarakmı @Oktay
    ACARA  GAMİNG AÇILDI 
    Ara
    Cevapla }}


    Hızlı Menü:


    Şu anda bu konuyu okuyanlar: 1 Ziyaretçi
    Kodlayan: Metehan Durmuş - MyBB Türkiye
    Forum Yazılımı: MyBB , Kodlaması: MyBBGroup ve Çevirisi: MCTR

    Online Shopping App
    Online Shopping - E-Commerce Platform
    Online Shopping - E-Commerce Platform
    Feinunze Schmuck Jewelery Online Shopping