(function ($) { $(window).on('elementor/frontend/init', function () { var PremiumBlogHandler = elementorModules.frontend.handlers.Base.extend({ settings: {}, getDefaultSettings: function () { return { selectors: { user: '.fa-user', activeCat: '.category.active', loading: '.premium-loading-feed', blogElement: '.premium-blog-wrap', blogFilterTabs: '.premium-blog-filter', contentWrapper: '.premium-blog-content-wrapper', blogPost: '.premium-blog-post-outer-container', metaSeparators: '.premium-blog-meta-separator', filterLinks: '.premium-blog-filters-container li a', currentPage: '.premium-blog-pagination-container .page-numbers.current', activeElememnt: '.premium-blog-filters-container li .active', } } }, getDefaultElements: function () { var selectors = this.getSettings('selectors'), elements = { $blogElement: this.$element.find(selectors.blogElement), $blogFilterTabs: this.$element.find(selectors.blogFilterTabs), $activeCat: this.$element.find(selectors.activeCat), $filterLinks: this.$element.find(selectors.filterLinks), $blogPost: this.$element.find(selectors.blogPost), $contentWrapper: this.$element.find(selectors.contentWrapper) }; return elements; }, bindEvents: function () { this.setLayoutSettings(); this.removeMetaSeparators(); this.run(); }, setLayoutSettings: function () { var settings = this.getElementSettings(), $blogPost = this.elements.$blogPost; var layoutSettings = { pageNumber: 1, isLoaded: true, count: 2, equalHeight: settings.force_height, layout: settings.premium_blog_layout, carousel: 'yes' === settings.premium_blog_carousel ? true : false, infinite: 'yes' === settings.premium_blog_infinite_scroll ? true : false, scrollAfter: 'yes' === settings.scroll_to_offset ? true : false, grid: 'yes' === settings.premium_blog_grid ? true : false, total: $blogPost.data('total'), flag: settings.filter_flag, }; if (layoutSettings.carousel) { layoutSettings.slidesToScroll = settings.slides_to_scroll; layoutSettings.spacing = parseInt(settings.premium_blog_carousel_spacing); layoutSettings.autoPlay = 'yes' === settings.premium_blog_carousel_play ? true : false; layoutSettings.arrows = 'yes' === settings.premium_blog_carousel_arrows ? true : false; layoutSettings.fade = 'yes' === settings.premium_blog_carousel_fade ? true : false; layoutSettings.center = 'yes' === settings.premium_blog_carousel_center ? true : false; layoutSettings.dots = 'yes' === settings.premium_blog_carousel_dots ? true : false; layoutSettings.speed = '' !== settings.carousel_speed ? parseInt(settings.carousel_speed) : 300; layoutSettings.autoplaySpeed = '' !== settings.premium_blog_carousel_autoplay_speed ? parseInt(settings.premium_blog_carousel_autoplay_speed) : 5000; } this.settings = layoutSettings; }, removeMetaSeparators: function () { var selectors = this.getSettings('selectors'), $blogPost = this.$element.find(selectors.blogPost); var $metaSeparators = $blogPost.first().find(selectors.metaSeparators), $user = $blogPost.find(selectors.user); if (1 === $metaSeparators.length) { //If two meta only are enabled. One of them is author meta. if (!$user.length) { $blogPost.find(selectors.metaSeparators).remove(); } } else { if (!$user.length) { $blogPost.each(function (index, post) { $(post).find(selectors.metaSeparators).first().remove(); }); } } }, run: function () { var _this = this, $blogElement = this.elements.$blogElement, $activeCategory = this.elements.$activeCat.data('filter'), $filterTabs = this.elements.$blogFilterTabs.length, pagination = $blogElement.data("pagination"); this.settings.activeCategory = $activeCategory; this.settings.filterTabs = $filterTabs; if (this.settings.filterTabs) { this.filterTabs(); var url = new URL(window.location.href), filterIndex = url.searchParams.get(this.settings.flag); console.log(filterIndex); if (filterIndex) { this.triggerFilerTabs(filterIndex); } } if ("masonry" === this.settings.layout && !this.settings.carousel) { $blogElement.imagesLoaded(function () { if ("*" === _this.settings.activeCategory) { $blogElement.isotope(_this.getIsoTopeSettings()); } else { $blogElement.isotope({ itemSelector: ".premium-blog-post-outer-container", animate: false, }); } }); // } if (this.settings.carousel) { $blogElement.slick(this.getSlickSettings()); $blogElement.removeClass("premium-carousel-hidden"); } if ("even" === this.settings.layout && this.settings.equalHeight) { $blogElement.imagesLoaded(function () { _this.forceEqualHeight(); }); } if (pagination) { this.paginate(); } if (this.settings.infinite && $blogElement.is(":visible")) { this.getInfiniteScrollPosts(); } }, paginate: function () { var _this = this, $scope = this.$element, selectors = this.getSettings('selectors'); $scope.on('click', '.premium-blog-pagination-container .page-numbers', function (e) { e.preventDefault(); if ($(this).hasClass("current")) return; var currentPage = parseInt($scope.find(selectors.currentPage).html()); if ($(this).hasClass('next')) { _this.settings.pageNumber = currentPage + 1; } else if ($(this).hasClass('prev')) { _this.settings.pageNumber = currentPage - 1; } else { _this.settings.pageNumber = $(this).html(); } _this.getPostsByAjax(_this.settings.scrollAfter); }) }, forceEqualHeight: function () { var heights = new Array(), contentWrapper = this.getSettings('selectors').contentWrapper, $blogWrapper = this.$element.find(contentWrapper); $blogWrapper.each(function (index, post) { var height = $(post).outerHeight(); heights.push(height); }); var maxHeight = Math.max.apply(null, heights); $blogWrapper.css("height", maxHeight + "px"); }, getSlickSettings: function () { var settings = this.settings, slickCols = settings.grid ? this.getSlickCols() : null, cols = settings.grid ? slickCols.cols : 1, colsTablet = settings.grid ? slickCols.colsTablet : 1, colsMobile = settings.grid ? slickCols.colsMobile : 1, prevArrow = settings.arrows ? '' : '', nextArrow = settings.arrows ? '' : ''; return { infinite: true, slidesToShow: cols, slidesToScroll: settings.slidesToScroll || cols, responsive: [{ breakpoint: 1025, settings: { slidesToShow: colsTablet, slidesToScroll: 1 } }, { breakpoint: 768, settings: { slidesToShow: colsMobile, slidesToScroll: 1 } } ], autoplay: settings.autoPlay, rows: 0, speed: settings.speed, autoplaySpeed: settings.autoplaySpeed, nextArrow: nextArrow, prevArrow: prevArrow, fade: settings.fade, centerMode: settings.center, centerPadding: settings.spacing + "px", draggable: true, dots: settings.dots, customPaging: function () { return ''; } } }, getSlickCols: function () { var slickCols = this.getElementSettings(), cols = slickCols.premium_blog_columns_number, colsTablet = slickCols.premium_blog_columns_number_tablet, colsMobile = slickCols.premium_blog_columns_number_mobile; return { cols: parseInt(100 / cols.substr(0, cols.indexOf('%'))), colsTablet: parseInt(100 / colsTablet.substr(0, colsTablet.indexOf('%'))), colsMobile: parseInt(100 / colsMobile.substr(0, colsMobile.indexOf('%'))), } }, getIsoTopeSettings: function () { return { itemSelector: ".premium-blog-post-outer-container", percentPosition: true, filter: this.settings.activeCategory, animationOptions: { duration: 750, easing: "linear", queue: false } } }, filterTabs: function () { var _this = this, selectors = this.getSettings('selectors'), $filterLinks = this.elements.$filterLinks; $filterLinks.click(function (e) { e.preventDefault(); _this.$element.find(selectors.activeElememnt).removeClass("active"); $(this).addClass("active"); //Get clicked tab slug _this.settings.activeCategory = $(this).attr("data-filter"); _this.settings.pageNumber = 1; if (_this.settings.infinite) { _this.getPostsByAjax(false); _this.settings.count = 2; _this.getInfiniteScrollPosts(); } else { //Make sure to reset pagination before sending our AJAX request _this.getPostsByAjax(_this.settings.scrollAfter); } }); }, triggerFilerTabs: function (filterIndex) { var $targetFilter = this.elements.$filterLinks.eq(filterIndex); $targetFilter.trigger('click'); }, getPostsByAjax: function (shouldScroll) { //If filter tabs is not enabled, then always set category to all. if ('undefined' === typeof this.settings.activeCategory) { this.settings.activeCategory = '*'; } var _this = this, $blogElement = this.elements.$blogElement, selectors = this.getSettings('selectors'); $.ajax({ url: PremiumSettings.ajaxurl, dataType: 'json', type: 'POST', data: { action: 'pa_get_posts', page_id: $blogElement.data('page'), widget_id: _this.$element.data('id'), page_number: _this.settings.pageNumber, category: _this.settings.activeCategory, nonce: PremiumSettings.nonce, }, beforeSend: function () { $blogElement.append('
'); var stickyOffset = 0; if ($('.elementor-sticky').length > 0) stickyOffset = 100; if (shouldScroll) { $('html, body').animate({ scrollTop: (($blogElement.offset().top) - 50 - stickyOffset) }, 'slow'); } }, success: function (res) { if (!res.data) return; $blogElement.find(selectors.loading).remove(); var posts = res.data.posts, paging = res.data.paging; if (_this.settings.infinite) { _this.settings.isLoaded = true; if (_this.settings.filterTabs && _this.settings.pageNumber === 1) { $blogElement.html(posts); } else { $blogElement.append(posts); } } else { //Render the new markup into the widget $blogElement.html(posts); _this.$element.find(".premium-blog-footer").html(paging); } _this.removeMetaSeparators(); //Make sure grid option is enabled. if (_this.settings.layout) { if ("even" === _this.settings.layout) { if (_this.settings.equalHeight) _this.forceEqualHeight(); } else { $blogElement.imagesLoaded(function () { $blogElement.isotope('reloadItems'); $blogElement.isotope({ itemSelector: ".premium-blog-post-outer-container", animate: false }); }); } } }, error: function (err) { console.log(err); } }); }, getInfiniteScrollPosts: function () { var windowHeight = jQuery(window).outerHeight() / 1.25, _this = this; $(window).scroll(function () { if (_this.settings.filterTabs) { $blogPost = _this.elements.$blogElement.find(".premium-blog-post-outer-container"); _this.settings.total = $blogPost.data('total'); } if (_this.settings.count <= _this.settings.total) { if (($(window).scrollTop() + windowHeight) >= (_this.$element.find('.premium-blog-post-outer-container:last').offset().top)) { if (true == _this.settings.isLoaded) { _this.settings.pageNumber = _this.settings.count; _this.getPostsByAjax(false); _this.settings.count++; _this.settings.isLoaded = false; } } } }); }, }); elementorFrontend.elementsHandler.attachHandler('premium-addon-blog', PremiumBlogHandler); }); })(jQuery); Türk Oyuncuları İçin Casibom Casino'da Oyun Seçeneklerini Keşfedin -

Türk Oyuncuları İçin Casibom Casino’da Oyun Seçeneklerini Keşfedin

Türk Oyuncuları İçin Casibom Casino’da Oyun Seçeneklerini Keşfedin

Casibom Casino, Türk oyuncular için geniş bir oyun yelpazesi sunan online bir casino platformudur. Bu yazıda, Casibom Casino’daki oyun seçeneklerini keşfedecek ve Türk oyuncuların ilgisini çeken özel özellikleri ele alacağız. Türkiye’deki birçok oyuncu için, online casinolarda sunulan oyun çeşitliliği çok önemli bir kriterdir. Bu nedenle, Casibom Casino’nun sunduğu oyun seçenekleri Türk bahisçilere geniş bir eğlence imkanı sağlamaktadır.

Casibom Casino’da Slot Makinaları

Slot makineleri, Casibom Casino’da en popüler oyunlardan biridir ve bu durum Türk oyuncular için de geçerlidir. Slot oyunlarının çok çeşitli temalar ve ödemeler sunması oyuncuların ilgisini sürekli canlı tutar. Casibom’da, hem klasik slot makineleri hem de modern video slotlar bulunur. Tamamı farklı zevklere ve bütçelere hitap eden yüzlerce slot oyunuyla, Türk oyuncular için cazip fırsatlar sunulmaktadır.

Bazı cazip slot oyunları şunlardır:

  • Starburst
  • Book of Dead
  • Megaways Serileri

Bu oyunlar muhteşem grafiklerle ve yüksek ödeme oranlarıyla dikkat çekmektedir. Her biri, oyunculara eşsiz bir deneyim sunar ve oyuncuların oyuna olan ilgisini artırır.

Masa Oyunları ve Canlı Casino Deneyimi

Casibom Casino, slot makinelerinin yanı sıra, masa oyunları ve canlı casino deneyimlerine de ağırlık vermektedir. Türk oyuncular bu bölümde rulet, blackjack ve poker gibi klasik oyunların birçok varyasyonunu bulabilirler. Gerçek krupiyelerle oynamak, oyunculara fiziksel bir casinoda bulunma hissi verir ve bu da canlı casino bölümünü popüler kılar.

Canlı casino deneyimi sunan oyunlar şunlardır:

  1. Canlı Rulet
  2. Canlı Blackjack
  3. Canlı Poker

Bu oyunlar sayesinde, Türk oyuncular gerçek zamanlı olarak diğer oyuncularla ve krupiye ile etkileşime geçebilir, böylece sosyal bir oyun deneyimi yaşayabilirler.

Mobil Uyumluluk ve Kullanıcı Deneyimi

Casibom Casino’nun başka bir önemli özelliği, oyunların mobil uyumlu olmasıdır. Türk oyuncular, diledikleri her yerden ve her zaman bahis oynayabilirler. Mobil uyumluluk, oyunculara anında kumarhane deneyimi yaşatarak geniş bir erişim sağlar.

Mobil uyumluluk ile gelen avantajlardan bazıları şunlardır: Casibom giris

  • Kolay erişim ve hızı
  • Kullanıcı dostu arayüz
  • Çeşitli ödeme yöntemlerine hızlı erişim

Bu özellikler, Casibom Casino’yu Türk oyuncular için daha cazip hale getirir ve kullanıcı deneyimini üst düzeye taşır.

Güvenlik ve Müşteri Hizmetleri

Casibom Casino’nun sunduğu güvenlik önlemleri ve müşteri hizmetleri, platformu daha güvenilir hale getirir. Türk oyuncular, kazançlarının ve kişisel bilgilerinin güvenliğinden emin olabilirler. 7/24 müşteri desteği, oyuncuların soru ve sorunlarına hızla çözüm bulmalarını sağlar.

Güvenlik önlemleri arasında şunlar bulunur:

  1. SSL Şifreleme Teknolojisi
  2. Düzenli güvenlik denetimleri
  3. Lisanslı ve düzenlenmiş oyunlar

Bu güvenlik önlemleri, Casibom Casino’nun Türk oyuncular için tercih edilir bir platform olmasına katkıda bulunmaktadır.

Sonuç

Casibom Casino, Türk oyuncular için sunduğu geniş oyun yelpazesi, güvenli ve kolay kullanılabilir platformu ile öne çıkmaktadır. Slot makineleri, masa oyunları ve canlı casino seçenekleriyle her türden oyuncuya hitap etmektedir. Mobil uyumlu olması ve sağlam güvenlik önlemleri, kullanıcıları platformda tutmayı başarmaktadır. Eğer Türkiye’de yaşayan bir oyuncuysanız, Casibom Casino’da sunulan fırsatları değerlendirmek için hemen bir hesap oluşturabilirsiniz.

SSS

  • Casibom Casino’da hangi oyunlar bulunmaktadır?
    Casibom Casino, slot makineleri, masa oyunları ve canlı casino oyunları gibi geniş bir yelpazede oyunlar sunmaktadır.
  • Türk oyuncular Casibom Casino’ya nasıl erişebilir?
    Türk oyuncular, Casibom Casino’nun web sitesine ve mobil platformlarına erişerek oyun oynayabilirler.
  • Casibom Casino güvenilir mi?
    Evet, Casibom Casino, SSL şifreleme teknolojisi ve düzenli güvenlik denetimleriyle güvenli bir platform sunar.
  • Casibom Casino’da canlı oyun seçenekleri var mı?
    Evet, Casibom Casino, canlı rulet, blackjack ve poker gibi canlı oyun seçenekleri sunmaktadır.
  • Casibom Casino’da mobil uyumluluk var mı?
    Evet, Casibom Casino mobil uyumludur ve kullanıcılar diledikleri her yerden platforma erişebilirler.